Commit 7fb084cf authored by 李苏's avatar 李苏 💬

$refs

parent 2715790a
......@@ -195,7 +195,7 @@
cancelButtonText: '取消',
type: 'warning'
}).then(res => {
ctx.$ref.TablePager.loading=true
ctx.$refs.TablePager.loading=true
this.$post('xyl/wcs/wcsTask/start', {
......@@ -203,11 +203,11 @@
}).then(res => {
if (res.success) {
this.$success('操作成功')
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
ctx.refresh()
}
}).finally(res=>{
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
})
})
} else {
......@@ -221,17 +221,17 @@
cancelButtonText: '取消',
type: 'warning'
}).then(res => {
ctx.$ref.TablePager.loading=true
ctx.$refs.TablePager.loading=true
this.$post('lxyl/wcs/wcsTask/close', {
id: ctx.singleItem.id
}).then(res => {
if (res.success) {
this.$success('操作成功')
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
ctx.refresh()
}
}).finally(res=>{
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
})
})
} else {
......@@ -245,17 +245,17 @@
cancelButtonText: '取消',
type: 'warning'
}).then(res => {
ctx.$ref.TablePager.loading=true
ctx.$refs.TablePager.loading=true
this.$post('lxyl/wcs/wcsTask/complete', {
id: ctx.singleItem.id
}).then(res => {
if (res.success) {
this.$success('操作成功')
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
ctx.refresh()
}
}).finally(res=>{
ctx.$ref.TablePager.loading=false
ctx.$refs.TablePager.loading=false
})
})
} else {
......
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