Commit 97273930 authored by dragondean@qq.com's avatar dragondean@qq.com

修复新建空运订单关闭后左侧新建NaN的问题

parent 992ac62c
......@@ -949,7 +949,11 @@ export default {
this.getOrder()
}
if(this.$route.query.transportType != this.transportId){
this.$set(this.form.transportId, +this.$route.query.transportType || null)
let transportType = undefined
if(this.$route.query.transportType){
transportType = +this.$route.query.transportType
}
this.$set(this.form, 'transportId', transportType)
}
// 变更出货渠道
......
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