|
@@ -145,6 +145,15 @@
|
|
|
>
|
|
>
|
|
|
详情
|
|
详情
|
|
|
</el-link>
|
|
</el-link>
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ v-if="row.verifyStatus == 0 || row.verifyStatus == 3"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
|
+ @click="deleted(row)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 删除
|
|
|
|
|
+ </el-link>
|
|
|
</template>
|
|
</template>
|
|
|
<template v-slot:bizType="{ row }">
|
|
<template v-slot:bizType="{ row }">
|
|
|
{{ handleBizType(row.bizType) }}
|
|
{{ handleBizType(row.bizType) }}
|
|
@@ -329,6 +338,15 @@
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
|
|
+ async deleted(row) {
|
|
|
|
|
+ this.$confirm('是否确定删除?', '提示', {
|
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(async () => {
|
|
|
|
|
+ console.log('删除了')
|
|
|
|
|
+ }).catch(() => {});
|
|
|
|
|
+ },
|
|
|
handleCurrentChange() {
|
|
handleCurrentChange() {
|
|
|
this.getList();
|
|
this.getList();
|
|
|
},
|
|
},
|