From aa4451fa555c7d86502c0416a5cf3be343acb67c Mon Sep 17 00:00:00 2001
From: wwl <xchao828@163.com>
Date: 星期三, 08 一月 2025 15:09:31 +0800
Subject: [PATCH] 1

---
 src/views/system/comp/index.vue |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 50 insertions(+), 6 deletions(-)

diff --git a/src/views/system/comp/index.vue b/src/views/system/comp/index.vue
index ea5f569..63ae2dd 100644
--- a/src/views/system/comp/index.vue
+++ b/src/views/system/comp/index.vue
@@ -337,11 +337,11 @@
               </el-form-item>
               <el-form-item label="浼樻儬">
                 <el-input-number ref="inputNumber" style="width: 150px" v-model="youhui" :precision="2" :step="0.1"
-               :min="0" @change="numberChange"></el-input-number>
+                  :min="0" @change="numberChange"></el-input-number>
               </el-form-item>
               <el-form-item label="鐜颁环">
                 <el-input ref="inputName" v-model="queryParams.xianprice" placeholder="鍚堣" clearable
-                  style="width: 140px" />
+                  style="width: 140px" @input="changeXianjia" @blur="numberChangeXianPrice(youhui, youhui)" />
               </el-form-item>
               <el-form-item>
                 <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">閲嶇疆</el-button>
@@ -428,7 +428,7 @@
               </el-table-column>
             </el-table>
             <div style="font-size: 16px;margin-top: 10px;">椤圭洰鎬绘潯鏁帮細<span style="font-weight: 700;margin-right: 5px;">{{
-                newpacName.length }}</span>鏉�</div>
+              newpacName.length }}</span>鏉�</div>
           </el-col>
           <el-col :span="8" :xs="24">
             <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="46px"
@@ -459,8 +459,8 @@
           <el-col :span="2" :xs="24">
             <div style="margin: 240% 16%">
               <el-button type="primary" size="medium " icon="el-icon-back"
-                style="writing-mode: vertical-rl; text-align: center;letter-spacing: 10px;"
-                @click="resetright">纭� 璁�</el-button>
+                style="writing-mode: vertical-rl; text-align: center;letter-spacing: 10px;" @click="resetright">纭�
+                璁�</el-button>
             </div>
           </el-col>
           <el-col :span="8" :xs="24">
@@ -804,6 +804,13 @@
     this.getList();
   },
   methods: {
+    changeXianjia() {
+      // 鍘熷鎶樻墸鐜囪绠�
+
+
+      this.youhui = (Math.floor((this.queryParams.xianprice / this.queryParams.price) * 100) / 100) * 10
+
+    },
     validateDiscount(row) {
       if (row.limits > 10) {
         row.limits = 10; // 寮哄埗灏嗗�艰缃负鏈�澶у��
@@ -909,7 +916,7 @@
       this.handleQuery();
     },
     resetQuerys() {
-        this.OnenewpacName = [],
+      this.OnenewpacName = [],
         this.queryParams.price = 0,
         this.queryParams.xianprice = 0,
         this.youhui = 0
@@ -1014,7 +1021,44 @@
         });
 
     },
+    numberChangeXianPrice(currentValue, oldValue) {
+      this.$confirm("纭畾淇敼鎵�鏈夊瓙椤圭殑鎶樻墸鍚楋紵", "鎻愮ず", {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "warning",
+      })
+        .then(() => {
+          this.youhui = currentValue;
+          if (this.youhui < this.getInfodis) {
+            this.youhui = this.getInfodis;
+          }
 
+          let totalYsprice = new Big(0); // 鍒濆鍖栨�� ysprice
+
+          this.OnenewpacName.forEach((item) => {
+            item.limits = this.youhui;
+            const proPrice = new Big(item.proPrice);
+            const limits = new Big(item.limits);
+            const result = proPrice.times(limits.div(10));  // ordPrice * (discount / 10)
+            item.ysPrice = result.toNumber();
+            totalYsprice = totalYsprice.plus(new Big(item.ysPrice));
+          });
+
+          // 璁$畻瀹屾墍鏈� ysPrice 鍚庤繘琛岃皟鏁�
+          if (totalYsprice.toNumber() !== this.queryParams.xianprice) {
+            const diff = this.queryParams.xianprice - totalYsprice.toNumber();
+            if (this.OnenewpacName.length > 0) {
+              const lastItem = this.OnenewpacName[this.OnenewpacName.length - 1];
+              lastItem.ysPrice += diff;
+              // 璋冩暣鍚庢洿鏂� queryParams.xianprice
+              this.queryParams.xianprice = totalYsprice.plus(diff).toNumber();
+            }
+          }
+        })
+        .catch(() => {
+          this.youhui = oldValue;
+        });
+    },
     changegroupingName() {
       if (this.selectionList.length <= 0) {
         this.$modal.msgError("璇峰厛閫変腑閮ㄩ棬鎴栨坊鍔犳柊鐨勯儴闂�");

--
Gitblit v1.8.0