From bc44c8e3c9d85691ce3fa73ef1300a6fae46e365 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期二, 18 三月 2025 19:07:08 +0800
Subject: [PATCH] Merge branch 'dev' of http://114.132.189.42:9002/r/center-lims-before-ruoyi into dev
---
src/views/business/inspectionOrder/add.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/business/inspectionOrder/add.vue b/src/views/business/inspectionOrder/add.vue
index c46e5fa..1691fcb 100644
--- a/src/views/business/inspectionOrder/add.vue
+++ b/src/views/business/inspectionOrder/add.vue
@@ -1565,6 +1565,7 @@
import getLodop from "@/utils/lodop";
import { bigEval } from "@/utils/bigEval";
import { getDicts } from "@/api/system/dict/data";
+import Big from "big.js";
export default {
components: {
fiberOpticConfig,
@@ -2452,10 +2453,9 @@
let arr1 = [];
arr0.forEach((m) => {
let index = code.findIndex((b) => m.includes(b));
- // console.log("index--銆�", index);
if (index > -1) {
let arr = m.split(code[index]).filter((b) => !!b);
- let calcNum = this.$Big(
+ let calcNum = new Big(
bigEval(this.replaceAll(arr[0], symbolItem, value))
);
let num = calcNum.toFixed(
@@ -2474,7 +2474,7 @@
if (index > -1) {
let arr = ask.split(code[index]).filter((b) => !!b);
console.log("鐗规畩鍊兼浛鎹�--銆�", arr);
- let calcNum = this.$Big(
+ let calcNum = new Big(
bigEval(this.replaceAll(arr[0], symbolItem, value))
);
let num = calcNum.toFixed(
--
Gitblit v1.9.3