|
@@ -51,7 +51,8 @@
|
|
|
<el-table-column label="操作" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<div class="btnList">
|
|
|
- <el-button v-if="scope.row.state !== 0" type="text" @click="seeMore(scope.row)">查看</el-button>
|
|
|
+ <el-button v-if="scope.row.state == 1" type="text" @click="del(scope.row)">处理</el-button>
|
|
|
+ <el-button v-else-if="scope.row.state !== 0" type="text" @click="seeMore(scope.row)">查看</el-button>
|
|
|
<el-button v-else type="text" @click="del(scope.row)">处理</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -181,6 +182,7 @@ export default {
|
|
|
},
|
|
|
// 确认
|
|
|
async agreeEn(index) {
|
|
|
+ console.log(index)
|
|
|
if (index === 1 && this.confirmInfo == "确认信息") {
|
|
|
const res = await applicationHandle({
|
|
|
withdrawalId: this.dioObj.arr.withdrawalId,
|
|
@@ -252,6 +254,7 @@ export default {
|
|
|
this.dioObj.show = false
|
|
|
this.rejectReason = "";
|
|
|
this.confirmInfo = "确认信息";
|
|
|
+ console.log(this.dioObj);
|
|
|
this.infoList = this.infoList.filter(item => item.fields != 'rejectReason');
|
|
|
}
|
|
|
}
|