Compare commits
2 Commits
1435167744
...
9f289b6f9c
Author | SHA1 | Date | |
---|---|---|---|
9f289b6f9c | |||
e4ca04d864 |
@@ -235,12 +235,19 @@ export default {
|
|||||||
},
|
},
|
||||||
//撤销
|
//撤销
|
||||||
async processRClick(row) {
|
async processRClick(row) {
|
||||||
const id = row.id;
|
this.$confirm('您确定要撤销吗?', '提示', {
|
||||||
cancelAudit(id).then(res => {
|
confirmButtonText: '确定',
|
||||||
if (res.code == 200) {
|
cancelButtonText: '取消',
|
||||||
this.getList();
|
type: 'warning'
|
||||||
}
|
}).then(async () => {
|
||||||
|
const id = row.id;
|
||||||
|
cancelAudit(id).then(res => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
/** 查询审核明细列表 */
|
/** 查询审核明细列表 */
|
||||||
getList() {
|
getList() {
|
||||||
|
Reference in New Issue
Block a user