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

$refs

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