This commit is contained in:
aihe 2024-05-07 21:53:45 +08:00
parent 99b59f332c
commit f8813979ad
2 changed files with 5 additions and 2 deletions

View File

@ -91,7 +91,10 @@
handleGoodChange(val) {
if(typeof this.goodinfoModal.index == 'undefined') {
// 新增回调处理
this.modelInfo.cargoList.push(val)
this.modelInfo.cargoList.push({
abnormalQty: 0,
...val
})
} else {
Object.assign(this.modelInfo.cargoList[this.goodinfoModal.index], val)
}

View File

@ -55,7 +55,7 @@ export const getOrderModels = () => {
"goodsInfo": undefined,
"totalWeight": undefined, // 总重量 = 结算重量
"totalVolume": undefined, // 总体积
"parcelQty": undefined, // 总件数
"parcelQty": 1, // 总件数
"billWeight": undefined, // 实际重量
"volumeWeight": undefined, // 体积重量 = 实际体积(立方厘米)*(1000000/泡重比) (长宽高都是按 cm 来计量的 )
"currency": undefined,