Commit 172ab352 authored by dragondean@qq.com's avatar dragondean@qq.com

修复预计送货日期选择后重置提单是否显示价格

parent 4929676d
......@@ -1031,7 +1031,11 @@ export default {
this.setBllLandingPrice('form.isCargoControl')
},
'form.type'(){
'form.type'(newVal, oldVal){
// 在选择预计送货日期后这里会触发,暂不清楚原因,所以加一个判断
if(newVal.join(",") == oldVal.join(",")){
return
}
this.setBllLandingPrice('form.type')
},
'form.drawee'(old, newVal){
......
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