Переглянути джерело

fix: 国际运费 国内运费 新建行bug fix

peter 4 місяців тому
батько
коміт
0184f3baeb

+ 5 - 1
src/pages/payment-record2/index.vue

@@ -457,7 +457,11 @@ const editRow = function (row: IPoItem, index: number) {
 
 const onAddRow = function (data: IPoItem) {
   if (tableData.value.length) {
-    tableData.value.push(data as IPoItem)
+    tableData.value.push(
+      Object.assign(data, {
+        Weight_Unit: tableData.value[0].Weight_Unit,
+      }) as IPoItem,
+    )
     dialogEditRowVisible.value = false
   }
 }

+ 4 - 3
src/pages/payment-record3/components/edit.vue

@@ -47,7 +47,7 @@
               prop="currency"
             >
               <el-select
-                v-model="form.currency"
+                v-model="form.Currency"
                 :disabled="disableFlag"
                 style="width: 100%"
               >
@@ -224,15 +224,16 @@ watchEffect(() => {
   dialogVisible.value = props.visible
   form.value = Object.assign(
     {
-      currency: 'CNY',
+      Currency: 'CNY',
       statement_name: '',
       payment_type: '国际运费',
+      Weight_Unit: ''
     },
     JSON.parse(JSON.stringify(props.currentEditRow)),
   )
 
   if (props.disableFlag) {
-    form.value.currency = props.lockedCurrency
+    form.value.Currency = props.lockedCurrency
   }
 })
 

+ 11 - 1
src/pages/payment-record3/index.vue

@@ -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')