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

添加确认弹框

parent abb9df95
...@@ -159,6 +159,12 @@ ...@@ -159,6 +159,12 @@
}, },
qxgb(ctx) { qxgb(ctx) {
if (ctx.singleItem && ctx.singleItem.id) { if (ctx.singleItem && ctx.singleItem.id) {
this.$confirm('是否继续操作?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(res=>{
this.$post('wms/rkgl/sjtz/batchUnClose/sjtzmx', { this.$post('wms/rkgl/sjtz/batchUnClose/sjtzmx', {
datas:[{ datas:[{
id: ctx.singleItem.id id: ctx.singleItem.id
...@@ -169,6 +175,10 @@ ...@@ -169,6 +175,10 @@
ctx.refresh() ctx.refresh()
} }
}) })
})
} else { } else {
this.$warning('请选中一条数据') 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