Commit 58ca9fab authored by dragondean@qq.com's avatar dragondean@qq.com

控货列表部分操作后会回到首页

parent 6fef7c4a
...@@ -310,7 +310,7 @@ export default { ...@@ -310,7 +310,7 @@ export default {
}) })
.then(res => { .then(res => {
this.$message.success('操作成功') this.$message.success('操作成功')
this.handleQuery() this.getList()
}) })
}, },
// 批量复核 // 批量复核
...@@ -319,7 +319,7 @@ export default { ...@@ -319,7 +319,7 @@ export default {
return batchReview("orderIds=" + this.ids.join(',')) return batchReview("orderIds=" + this.ids.join(','))
}).then(() => { }).then(() => {
this.$message.success(this.$t('操作成功')) this.$message.success(this.$t('操作成功'))
this.handleQuery() this.getList()
}) })
}, },
cargoTransfer(row){ cargoTransfer(row){
...@@ -333,15 +333,15 @@ export default { ...@@ -333,15 +333,15 @@ export default {
}, },
onReleaseSuccess(){ onReleaseSuccess(){
this.showReleaseOrderId = null this.showReleaseOrderId = null
this.handleQuery() this.getList()
}, },
onFallbackSuccess(){ onFallbackSuccess(){
this.showFallbackOrder = null this.showFallbackOrder = null
this.handleQuery() this.getList()
}, },
onTransferCargoSuccess(){ onTransferCargoSuccess(){
this.showTransferCargoOrderId = null this.showTransferCargoOrderId = null
this.handleQuery() this.getList()
} }
} }
}; };
......
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