浏览代码

change: 保存计价时把 总重量数据 一并传递.

peter 3 月之前
父节点
当前提交
5fe9cea55d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/pages/indent-manage/indent/components/calcPrice/index.vue

+ 1 - 1
src/pages/indent-manage/indent/components/calcPrice/index.vue

@@ -1615,7 +1615,7 @@ let checkForm = (type = 1) => {
   if (isExport.value === 1) p.is_export = 1 // 后端用来区分是否是点了导出
 
   if (type === 1) {
-    saveCalc(Object.assign(p, exportForm.value))
+    saveCalc(Object.assign(p, exportForm.value, { computedTotalWeight, computedTotalWeightPlus }))
   } else if (type === 2) {
     componentExportFormVisible.value = true
   }