Commit 16299067 authored by 李苏's avatar 李苏 💬

库位改变状态按钮

parent 543806e1
...@@ -227,7 +227,7 @@ ...@@ -227,7 +227,7 @@
}).then(res => { }).then(res => {
if (res.success) { if (res.success) {
this.$success('操作成功') this.$success('操作成功')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
}) })
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
}).then(res => { }).then(res => {
if (res.success) { if (res.success) {
this.$success('操作成功') this.$success('操作成功')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
}) })
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
}).then(res => { }).then(res => {
if (res.success) { if (res.success) {
this.$success('操作成功') this.$success('操作成功')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
}) })
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
}).then(res => { }).then(res => {
if (res.success) { if (res.success) {
this.$success('操作成功') this.$success('操作成功')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
}) })
...@@ -312,7 +312,7 @@ ...@@ -312,7 +312,7 @@
}).then(res => { }).then(res => {
if (res.success) { if (res.success) {
this.$success('操作成功') this.$success('操作成功')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
}) })
......
...@@ -47,12 +47,8 @@ ...@@ -47,12 +47,8 @@
"label": "name", "label": "name",
"value": "id" "value": "id"
}, },
width: 100 width: 100
}, },
{ {
title: "仓库", title: "仓库",
field: "ckName", field: "ckName",
...@@ -219,8 +215,6 @@ ...@@ -219,8 +215,6 @@
], ],
/* 默认启停用 */ /* 默认启停用 */
showqt: false, showqt: false,
} }
} }
...@@ -236,8 +230,8 @@ ...@@ -236,8 +230,8 @@
} }
this.$post('lxyl/rkgl/sjrw/lkrk/start', params).then(res => { this.$post('lxyl/rkgl/sjrw/lkrk/start', params).then(res => {
if (res.success) { if (res.success) {
this.$refs.basePage.refresh() // this.$refs.basePage.refresh()
ctx.refreshId(res.data.id)
} }
}) })
}, },
...@@ -246,13 +240,10 @@ ...@@ -246,13 +240,10 @@
ctx.DialogTitle = '上架选择工位' ctx.DialogTitle = '上架选择工位'
ctx.DialogWidth = '30vw' ctx.DialogWidth = '30vw'
ctx.showDialog = true ctx.showDialog = true
} else { } else {
this.warning('请选中一条数据') this.warning('请选中一条数据')
} }
}, },
close(ctx){ close(ctx){
if(ctx.singleItem&&ctx.singleItem.id){ if(ctx.singleItem&&ctx.singleItem.id){
this.$post('lxyl/rkgl/sjrw/lkrk/close',{ this.$post('lxyl/rkgl/sjrw/lkrk/close',{
...@@ -260,7 +251,7 @@ ...@@ -260,7 +251,7 @@
}).then(res=>{ }).then(res=>{
if(res.success){ if(res.success){
this.$success('任务关闭成功!') this.$success('任务关闭成功!')
ctx.refresh() ctx.refreshId(res.data.id)
} }
}) })
......
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