|
@@ -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();
|
|
|
});
|
|
|
},
|