From 753ac5f57b10588e225c1d82203b13a81bc9c9a7 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期四, 03 十二月 2020 18:36:26 +0800
Subject: [PATCH] 2020-12-03

---
 src/tabviews/subtabtable/index.jsx |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/tabviews/subtabtable/index.jsx b/src/tabviews/subtabtable/index.jsx
index 7c85792..f25fe28 100644
--- a/src/tabviews/subtabtable/index.jsx
+++ b/src/tabviews/subtabtable/index.jsx
@@ -227,13 +227,13 @@
 
         if (col.type === 'colspan' && col.sublist) {
           let _col = JSON.parse(JSON.stringify(col))
-          let subColumn = []
+          let subcols = []
           _col.sublist.forEach(sub => {
             if (colMap.has(sub)) {
-              subColumn.push(colMap.get(sub))
+              subcols.push(colMap.get(sub))
             }
           })
-          _col.subColumn = subColumn
+          _col.subcols = subcols
           _columns.push(_col)
         } else {
           _columns.push(col)

--
Gitblit v1.8.0