|
@@ -460,7 +460,11 @@ const editRow = function (row: ITrackingNumberItem, index: number) {
|
|
|
|
|
|
const onAddRow = function (data: ITrackingNumberItem) {
|
|
|
if (tableData.value.length) {
|
|
|
- tableData.value.push(data as ITrackingNumberItem)
|
|
|
+ tableData.value.push(
|
|
|
+ Object.assign(data, {
|
|
|
+ Weight_Unit: tableData.value[0].Weight_Unit,
|
|
|
+ }) as ITrackingNumberItem,
|
|
|
+ )
|
|
|
dialogEditRowVisible.value = false
|
|
|
}
|
|
|
}
|
|
@@ -528,6 +532,12 @@ const createInternationalPackage = function () {
|
|
|
})
|
|
|
return
|
|
|
}
|
|
|
+ ElNotification({
|
|
|
+ duration: 0,
|
|
|
+ title: '创建国际运费记录成功',
|
|
|
+ type: 'success',
|
|
|
+ message: '创建国际运费记录成功',
|
|
|
+ })
|
|
|
})
|
|
|
.catch((e) => {
|
|
|
console.log(e, 'createInternationalPackage error')
|