Browse Source

build master

xiaodai2022 2 years ago
parent
commit
15d874378b

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/chunk-950e7130.0f0431b8.css


BIN
dist/static/css/chunk-f8ad0c0c.3232fefa.css.gz → dist/static/css/chunk-950e7130.0f0431b8.css.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.374fdc1d.js


BIN
dist/static/js/app.490ee873.js.gz → dist/static/js/app.374fdc1d.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-950e7130.d0dcdf61.js


BIN
dist/static/js/chunk-950e7130.d0dcdf61.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-f8ad0c0c.28862113.js


BIN
dist/static/js/chunk-f8ad0c0c.28862113.js.gz


+ 16 - 18
src/views/sellOut/salesOrder/components/addForm.vue

@@ -614,7 +614,17 @@
           justify-content: space-between;
         "
       >
-        <p>订单总金额:{{ accMul(ruleForm.good_num, ruleForm.new_good_price) || 0 }}</p>
+        <p>
+          订单总金额:
+          {{
+            priceAccMul(
+              ruleForm && ruleForm.good_num ? ruleForm.good_num : "0",
+              ruleForm && ruleForm.new_good_price
+                ? ruleForm && ruleForm.new_good_price
+                : "0"
+            )
+          }}
+        </p>
         <el-button :size="'mini'" type="primary" @click="submitForm">保 存 </el-button>
       </el-col>
     </el-row>
@@ -638,6 +648,7 @@ import showVoucherModel from "@/components/show-voucher-model";
 import searchGoodOnlineModal from "@/components/search-good-online-modal";
 import { addColumns } from "./ShowDataTableColumns";
 import { mapGetters } from "vuex";
+import { accMul } from "@/utils/validate";
 export default {
   name: "salesOrderDetail",
   mixins: [mixinPage, resToken],
@@ -928,20 +939,8 @@ export default {
     this.initForm();
   },
   methods: {
-    //乘法精度问题
-    accMul(arg1, arg2) {
-      var m = 0,
-        s1 = arg1.toString(),
-        s2 = arg2.toString();
-      try {
-        m += s1.split(".")[1].length;
-      } catch (e) {}
-      try {
-        m += s2.split(".")[1].length;
-      } catch (e) {}
-      return (
-        (Number(s1.replace(".", "")) * Number(s2.replace(".", ""))) / Math.pow(10, m)
-      );
+    priceAccMul(a, b) {
+      return accMul(a, b);
     },
     async initForm() {
       this.status = "";
@@ -1189,7 +1188,6 @@ export default {
       }
       if (!this.priceLoding) {
         const { isok, price, stock } = await this.set_salegetprice();
-        console.log(this.accMul(price, 1));
         this.ruleForm.good_price = isok ? price : 0;
       }
 
@@ -1326,8 +1324,8 @@ export default {
           model.addrlist = [];
           model.customer_code = model.customer_code.toString();
           const { good_price, new_good_price } = model;
-          let a = this.accMul(good_price, "1"),
-            b = this.accMul(new_good_price, "1");
+          let a = accMul(good_price, "1"),
+            b = accMul(new_good_price, "1");
           if (a !== b) {
             model.good_price = model.new_good_price;
           }

+ 10 - 2
src/views/sellOut/zixunOrder/components/addEditGoodModal.vue

@@ -420,9 +420,14 @@
                   </el-col>
                   <el-col :span="8" class="fr" style="padding: 18px 0 0 0">
                     <div class="lsac">
-                      竞价单总额:{{
-                        accMul(this.ruleForm.budget_price, this.ruleForm.num)
+                      竞价单总额:
+                      {{
+                        priceAccMul(
+                          ruleForm && ruleForm.budget_price ? ruleForm.budget_price : "0",
+                          ruleForm && ruleForm.num ? ruleForm.num : "0"
+                        )
                       }}
+
                       (元)
                     </div>
                     <el-button
@@ -558,6 +563,9 @@ export default {
     openDelete(index) {
       this.spec_tableData.splice(index, 1);
     },
+    priceAccMul(a, b) {
+      return accMul(a, b);
+    },
     //规格编辑修改结果
     refreshEdit(e) {
       let item = JSON.parse(JSON.stringify(e));

+ 9 - 2
src/views/sellOut/zixunOrder/components/editForm.vue

@@ -626,8 +626,12 @@
                   </el-col>
                   <el-col :span="8" class="fr tr">
                     <div class="lsac">
-                      竞价单总额:{{
-                        accMul(this.ruleForm.budget_price, this.ruleForm.num)
+                      竞价单总额:
+                      {{
+                        priceAccMul(
+                          ruleForm && ruleForm.budget_price ? ruleForm.budget_price : "0",
+                          ruleForm && ruleForm.num ? ruleForm.num : "0"
+                        )
                       }}
                       (元)
                     </div>
@@ -794,6 +798,9 @@ export default {
     },
   },
   methods: {
+    priceAccMul(a, b) {
+      return accMul(a, b);
+    },
     async initForm() {
       this.loading = true;
       this.status = "";

Some files were not shown because too many files changed in this diff