浏览代码

修复上报/审核字段错误

yangjunhao 1 年之前
父节点
当前提交
7bf51f7e5e
共有 1 个文件被更改,包括 11 次插入11 次删除
  1. 11 11
      src/views/GATHER/index.vue

+ 11 - 11
src/views/GATHER/index.vue

@@ -165,10 +165,10 @@
       </el-table-column>
       <el-table-column label="审核状态" align="center" prop="approveStatus">
         <template slot-scope="scope">
-          <span v-if="scope.row.reportStatus == 0">未提交审核</span>
-          <span v-if="scope.row.reportStatus == 1">审核中</span>
-          <span v-if="scope.row.reportStatus == 2">审核通过</span>
-          <span v-if="scope.row.reportStatus == 3">审核拒绝</span>
+          <span v-if="scope.row.approveStatus == 0">未提交审核</span>
+          <span v-if="scope.row.approveStatus == 1">审核中</span>
+          <span v-if="scope.row.approveStatus == 2">审核通过</span>
+          <span v-if="scope.row.approveStatus == 3">审核拒绝</span>
         </template>
       </el-table-column>
       <el-table-column
@@ -195,7 +195,7 @@
 
           <el-popconfirm
             title="确定上报吗?"
-            @confirm="handleApprove(scope.row)"
+            @confirm="handleReport(scope.row)"
           >
             <el-button
               style="margin: 0 2px"
@@ -209,11 +209,11 @@
 
           <el-popconfirm
             title="确定提交吗?"
-            @confirm="handleReport(scope.row)"
+            @confirm="handleApprove(scope.row)"
           >
             <el-button
               style="margin: 0 2px"
-              v-if="scope.row.reportStatus == 0 && scope.row.collStatus == 1"
+              v-if="scope.row.approveStatus == 0 && scope.row.collStatus == 1"
               size="mini"
               type="text"
               slot="reference"
@@ -641,16 +641,16 @@ export default {
       });
     },
     //上报
-    handleApprove(data) {
-      approve(data).then((res) => {
+    handleReport(data) {
+      report(data).then((res) => {
         this.$modal.msgSuccess("上报成功");
         this.getList();
       });
     },
     //提交审核
-    handleReport(data) {
+    handleApprove(data) {
       this.$modal.msgSuccess("提交审核成功");
-      report(data).then((res) => {
+      approve(data).then((res) => {
         this.getList();
       });
     },