Commit c8afae7c authored by zhengyi's avatar zhengyi

修改强制到仓完成后的跳转逻辑修正

parent 6914ab27
......@@ -316,11 +316,15 @@ export default {
let params = {}
params.orderId = orderId
params.unloadTime = this.ulWarehouseTime
let r = await order_warehouse_check_force(params)
this.getLoadGoodsList()
await order_warehouse_check_force(params).then((res) => {
if (res.data){
this.$router.push('/order/warehousingTo-update?id=' + orderId)
}
})
})
this.$router.push('/order/warehousingTo-update?id=' + orderId)
},
getTotlContent,
getOrders(id) {
......
......@@ -298,10 +298,12 @@ export default {
let params = {}
params.orderId = orderId
params.unloadTime = this.ulWarehouseTime
let r = await order_warehouse_check_force(params)
this.getLoadGoodsList()
await order_warehouse_check_force(params).then((res) => {
if (res.data){
this.$router.push('/order/warehousingTo-update?id=' + orderId)
}
})
})
this.$router.push('/order/warehousingTo-update?id=' + orderId)
},
getTotlContent,
/* 获取卸柜数据 */
......
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