综合素质加撤销功能
This commit is contained in:
@@ -235,12 +235,19 @@ export default {
|
||||
},
|
||||
//撤销
|
||||
async processRClick(row) {
|
||||
const id = row.id;
|
||||
cancelAudit(id).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.getList();
|
||||
}
|
||||
this.$confirm('您确定要撤销吗?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(async () => {
|
||||
const id = row.id;
|
||||
cancelAudit(id).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.getList();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
},
|
||||
/** 查询审核明细列表 */
|
||||
getList() {
|
||||
|
Reference in New Issue
Block a user