|
@@ -82,7 +82,9 @@
|
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.status == 0 ? '未审核' : '已通过' }}</span>
|
|
|
+ <span v-if="scope.row.status == 0">未审核</span>
|
|
|
+ <span v-if="scope.row.status == 1">已通过</span>
|
|
|
+ <span v-if="scope.row.status == 3">已驳回</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="创建时间" align="center" prop="gmtCreate" width="180">
|
|
@@ -314,6 +316,7 @@ export default {
|
|
|
},
|
|
|
handleSubmit() {
|
|
|
this.selectObj.reason = this.textarea
|
|
|
+ this.selectObj.status = 3
|
|
|
circleManagementInfoHandle(this.selectObj).then(response => {
|
|
|
if (response.data) {
|
|
|
this.msgSuccess("驳回成功!");
|
|
@@ -330,6 +333,7 @@ export default {
|
|
|
if (type == 1) {
|
|
|
this.isShowhandle = true
|
|
|
} else {
|
|
|
+ row.status =1
|
|
|
circleManagementInfoHandle(row).then(response => {
|
|
|
if (response.data) {
|
|
|
this.msgSuccess("新增成功");
|