From ac3fc53f2c2f69690dbc0b7d5637624bb4457f73 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期五, 25 三月 2022 23:05:18 +0800
Subject: [PATCH] 2022-03-25

---
 src/tabviews/custom/components/table/edit-table/normalTable/index.jsx |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx b/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx
index ec4d578..032973a 100644
--- a/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx
+++ b/src/tabviews/custom/components/table/edit-table/normalTable/index.jsx
@@ -1877,7 +1877,11 @@
         if (pickup && setting.tableType === 'checkbox' && keys.length > 0) {
           this.setState({
             data: data,
-            edData: fromJS(data).toJS().filter(item => keys.includes(item.$$uuid))
+            edData: fromJS(data).toJS().filter(item => {
+              item.$origin = false
+              
+              return keys.includes(item.$$uuid)
+            })
           })
         } else {
           this.setState({

--
Gitblit v1.8.0