Commit 9992c914 authored by 李苏's avatar 李苏 💬

添加确认弹框

parent abb9df95
......@@ -159,17 +159,27 @@
},
qxgb(ctx) {
if (ctx.singleItem && ctx.singleItem.id) {
this.$post('wms/rkgl/sjtz/batchUnClose/sjtzmx', {
datas:[{
id: ctx.singleItem.id
}],
}).then(res => {
if (res.success) {
this.$success('操作成功')
ctx.refresh()
}
this.$confirm('是否继续操作?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(res=>{
this.$post('wms/rkgl/sjtz/batchUnClose/sjtzmx', {
datas:[{
id: ctx.singleItem.id
}],
}).then(res => {
if (res.success) {
this.$success('操作成功')
ctx.refresh()
}
})
})
} else {
this.$warning('请选中一条数据')
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment