From d896d25a2bee6dc9496f102035b2d68d17f3de65 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期二, 05 三月 2024 13:58:13 +0800
Subject: [PATCH] 生产调度变更记录功能

---
 src/views/common/ztt-table.vue |   55 +++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 41 insertions(+), 14 deletions(-)

diff --git a/src/views/common/ztt-table.vue b/src/views/common/ztt-table.vue
index 717635e..4996b43 100644
--- a/src/views/common/ztt-table.vue
+++ b/src/views/common/ztt-table.vue
@@ -182,6 +182,7 @@
           v-if="options.multiSelect && !isEdit"
           style="width: 55px;"
           :selectable="selectHandle"
+
         >
         </el-table-column>
         <!--鍗曢�夋-->
@@ -568,6 +569,13 @@
         return 'id'
       }
     },
+    //闇�瑕佸悎骞剁殑瀛楁闆嗗悎
+    mergeSpanArr: {
+        type: Array,
+        default: ()=>{
+            return []
+        }
+    },
     toolbarMaxLength: {
       type: Number,
       default: 5,
@@ -928,22 +936,41 @@
     },
     objectSpanMethod({ row, column, rowIndex, columnIndex }) {
       if (this.options.tableCellMerge) {
-        let result = ''
-        this.$emit(
-          'objectSpanMethod',
-          row,
-          column,
-          rowIndex,
-          columnIndex,
-          (val) => {
-            if (val) {
-              result = val
+        const propName = column.property
+        if (propName) {
+            if(this.mergeSpanArr.includes(propName)){
+                if (rowIndex > 0 && row[propName] === this.tableData[rowIndex - 1][propName]) {
+                    return { rowspan: 0, colspan: 0 };
+                } else {
+                    let rowspan = 1;
+                    for (let i = rowIndex + 1; i < this.tableData.length; i++) {
+                        if (this.tableData[i][propName] === row[propName]) {
+                            rowspan++;
+                        } else {
+                            break;
+                        }
+                    }
+                    return { rowspan: rowspan, colspan: 1 };
+                }
             }
-          }
-        )
-        if (result) {
-          return result
         }
+        // let result = ''
+        // this.$emit(
+        //   'objectSpanMethod',
+        //   row,
+        //   column,
+        //   rowIndex,
+        //   columnIndex,
+        //   (val) => {
+        //     console.log(val);
+        //     if (val) {
+        //       result = val
+        //     }
+        //   }
+        // )
+        // if (result) {
+        //   return result
+        // }
       }
     },
     getDataList(selectedId) {

--
Gitblit v1.9.3