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

海运复制缺啥货柜位置和方数字段默认值

parent 4e23b9cd
...@@ -321,8 +321,6 @@ export default { ...@@ -321,8 +321,6 @@ export default {
this.$set(this.form, 'stepPrice', 1) this.$set(this.form, 'stepPrice', 1)
} }
}) })
}, },
methods: { methods: {
// 获取模板数据(复制的源路线价格信息) // 获取模板数据(复制的源路线价格信息)
...@@ -357,7 +355,7 @@ export default { ...@@ -357,7 +355,7 @@ export default {
needBook needBook
} = res.data } = res.data
this.$set(this, 'form', Object.assign({}, this.form, { const data = {
allPrice, allPrice,
allPriceUnit, allPriceUnit,
allVolumeUnit, allVolumeUnit,
...@@ -375,7 +373,13 @@ export default { ...@@ -375,7 +373,13 @@ export default {
minWeightUnit, minWeightUnit,
needOrderInquiry, needOrderInquiry,
needBook needBook
})) }
// 海运需要填充货柜位置和订单方数上限
if(this.type == 'sea'){
data.containerLocation = res.data.containerLocation
data.square = res.data.square
}
this.$set(this, 'form', Object.assign({}, this.form, data))
// 产品选择器默认选择的商品 // 产品选择器默认选择的商品
getProduct(res.data.productId).then(res => { getProduct(res.data.productId).then(res => {
......
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