|
@@ -314,7 +314,7 @@
|
|
|
<template
|
|
|
v-if="
|
|
|
scope.row.collStatus == 1 &&
|
|
|
- scope.row.reportStatus == 0 &&
|
|
|
+ (scope.row.reportStatus == 0 || scope.row.reportStatus == null) &&
|
|
|
scope.row.approveStatus == 2 &&
|
|
|
checkPermi(['gather:GATHER:report'])
|
|
|
"
|
|
@@ -1315,21 +1315,17 @@ export default {
|
|
|
addGATHER(this.form).then((response) => {
|
|
|
if (response.code == 200) {
|
|
|
this.$modal.msgSuccess("录入成功");
|
|
|
- this.open = false;
|
|
|
this.getList();
|
|
|
+ this.open = false;
|
|
|
+ compute(this.form).then((response) => {});
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
- if (is) {
|
|
|
- compute(this.form).then((response) => {
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- }
|
|
|
} else if (type == "edit") {
|
|
|
updateGATHER(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
- this.openDetail = false;
|
|
|
this.getList();
|
|
|
+ this.openDetail = false;
|
|
|
+ compute(this.form).then((response) => {});
|
|
|
});
|
|
|
}
|
|
|
})
|