|
@@ -1069,7 +1069,7 @@ let initForm = (switchStatus = [] as any[], useOldFormData = true) => {
|
|
|
productInfo.value.save_cal.saleperson || (r.length ? r[0].value : ''),
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+console.log(formList.value, 'formList')
|
|
|
setFreight()
|
|
|
if (useOldFormData) {
|
|
|
// 仅页面初始化时会执行到这里
|
|
@@ -1713,11 +1713,12 @@ let onForm3ItemChange = (form: any, key: string) => {
|
|
|
}
|
|
|
}
|
|
|
let openDTDDialog = (columnNum: number, rowNum: number) => {
|
|
|
+ let a = formList.value[rowNum].fclData.method_fcl
|
|
|
dtdData.value = {
|
|
|
rowNum,
|
|
|
columnNum,
|
|
|
freight_cost: formList.value[rowNum][`freight_cost_${columnNum}`] || '',
|
|
|
- method_fcl: formList.value[rowNum].fclData.method_fcl || '空运',
|
|
|
+ method_fcl: a !== undefined ? a : '空运',
|
|
|
}
|
|
|
dtdVisible.value = true
|
|
|
}
|