From 1995e710dcf70e635c4edaa8173f8b66cd67d499 Mon Sep 17 00:00:00 2001
From: 黄何裕 <1053952480@qq.com>
Date: 星期二, 30 七月 2024 14:05:06 +0800
Subject: [PATCH] 样式优化

---
 src/views/system/contract/score/index.vue |   23 +++++++++++++++++++++--
 1 files changed, 21 insertions(+), 2 deletions(-)

diff --git a/src/views/system/contract/score/index.vue b/src/views/system/contract/score/index.vue
index bde813d..d578e8c 100644
--- a/src/views/system/contract/score/index.vue
+++ b/src/views/system/contract/score/index.vue
@@ -99,8 +99,8 @@
         </el-form-item>
       </el-form>
       <div slot="footer" class="dialog-footer">
-        <el-button type="primary" @click="submitAuditing">纭� 瀹�</el-button>
         <el-button @click="closeAuditing">鍙� 娑�</el-button>
+        <el-button type="primary" @click="submitAuditing">纭� 瀹�</el-button>
       </div>
     </el-dialog>
 
@@ -151,8 +151,8 @@
         </el-form-item>
       </el-form>
       <div slot="footer" class="dialog-footer">
-        <el-button type="primary" @click="submitForm">纭� 瀹�</el-button>
         <el-button @click="cancel">鍙� 娑�</el-button>
+        <el-button type="primary" @click="submitForm">纭� 瀹�</el-button>
       </div>
     </el-dialog>
 
@@ -289,6 +289,7 @@
       let item = this.$refs['cascader'].getCheckedNodes()[0].data;
       this.calcObj = item;
       this.form.contractId = item.contractId;
+      this.form.ruleName = item.ruleName + " / " + item.label;
       this.form.deductCategory = item.deductCategory == '鍒嗘暟涔樹互鏁伴噺' ? '鎵�' + item.calcFraction  + '鍒�*鏁伴噺 ' : item.deductCategory == '闄や互鏁伴噺鍚庝箻浠ュ垎鏁�' ? '鎵�' + item.calcFraction + '鍒�/' +  item.calcUnit + '灏忔椂' : '鎵�' + item.calcFraction + '鍒�';
       if (item.deductCategory == "鎵f寚瀹氬垎鏁�") {
         this.needNum = false;
@@ -315,6 +316,24 @@
     handleChangeUnit(value) {
       getRuleListByUnitId(value).then((res) => {
         this.options = this.getTreeData(res.data);
+        // 鎵嬪姩鏍戝舰缁撴瀯
+        if (this.options) {
+          let groupedList = {};
+          this.options.forEach(item => {
+            if (!groupedList[item.ruleName]) {
+              groupedList[item.ruleName] = {
+                value: 0,
+                children: [],
+                label: item.ruleName,
+                ruleName: item.ruleName,
+                contractId: item.contractId
+              };
+            }
+            groupedList[item.ruleName].children.push(item);
+          });
+          let result = Object.values(groupedList);
+          this.options = result;
+        }
       })
     },
     getTreeData(data) {

--
Gitblit v1.8.0