gks 1 ano atrás
pai
commit
70944676f8
1 arquivos alterados com 38 adições e 10 exclusões
  1. 38 10
      src/views/GATHER/index.vue

+ 38 - 10
src/views/GATHER/index.vue

@@ -189,6 +189,8 @@
         <template slot-scope="scope">
           <span v-if="scope.row.collStatus == 0">未采集</span>
           <span v-if="scope.row.collStatus == 1">已采集</span>
+          <span v-if="scope.row.collStatus == 2">草稿</span>
+
         </template>
       </el-table-column>
       <el-table-column
@@ -360,10 +362,24 @@
           >
           <!-- {{scope.row.collStatus}}--{{scope.row.approveStatus}} -->
 
+          
           <el-button
             style="margin: 0 2px"
             v-if="
-              scope.row.collStatus == 1 &&
+              scope.row.collStatus == 2 &&
+              (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
+              checkPermi(['gather:GATHER:edit']) // 编辑权限
+            "
+            size="mini"
+            type="text"
+            @click="handleDetail(scope.row, 1)"
+            >确定</el-button
+          >
+
+          <el-button
+            style="margin: 0 2px"
+            v-if="
+              (scope.row.collStatus == 1 || scope.row.collStatus == 2) &&
               (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
               checkPermi(['gather:GATHER:edit']) // 编辑权限
             "
@@ -541,8 +557,8 @@
       </template>
       <div slot="footer" class="dialog-footer">
         <el-button type="primary" @click="submitForm('add')">确 定</el-button>
+        <el-button @click="submitForm('draft')" type="warning">暂 存</el-button>
         <el-button @click="cancel">取 消</el-button>
-        <!-- <el-button @click="cancel">取 消</el-button> -->
       </div>
     </el-dialog>
 
@@ -643,6 +659,8 @@
         <el-button type="primary" @click="submitForm('edit')" v-if="edit"
           >确 定</el-button
         >
+        <el-button @click="submitForm('draft')" v-if="edit" type="warning">暂 存</el-button>
+
         <el-button type="primary" v-if="check" @click="handleCheck(1)"
           >通 过</el-button
         >
@@ -1284,25 +1302,35 @@ export default {
           });
         });
       });
+
+      let msg = "";
       Promise.all(p)
         .then(() => {
           if (type == "add") {
-            addGATHER(this.form).then((response) => {
-              if (response.code == 200) {
-                this.$modal.msgSuccess("录入成功");
-                this.getList();
-                this.open = false;
-                compute(this.form).then((response) => {});
-              }
-            });
+            this.form.collStatus = 1;
+            msg = "录入成功";
           } else if (type == "edit") {
+            this.form.collStatus = 1;
             updateGATHER(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.getList();
               this.openDetail = false;
               compute(this.form).then((response) => {});
             });
+            return;
+          }else if(type == 'draft'){
+            this.form.collStatus = 2;
+            msg = "操作成功";
+
           }
+          addGATHER(this.form).then((response) => {
+              if (response.code == 200) {
+                this.$modal.msgSuccess(msg);
+                this.getList();
+                this.open = false;
+                compute(this.form).then((response) => {});
+              }
+            });
         })
         .catch((err) => {
           this.$message.error("请检查是否有必填项未输入!");