From f07c42a322f41e14ef5b1bf8f2fd66fc5d338cdd Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期三, 28 六月 2023 18:17:09 +0800
Subject: [PATCH] 2023-06-28

---
 src/tabviews/custom/components/table/normal-table/index.jsx |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/src/tabviews/custom/components/table/normal-table/index.jsx b/src/tabviews/custom/components/table/normal-table/index.jsx
index 6a52bc5..3d87ac8 100644
--- a/src/tabviews/custom/components/table/normal-table/index.jsx
+++ b/src/tabviews/custom/components/table/normal-table/index.jsx
@@ -294,17 +294,32 @@
           this.timer && this.timer.stop()
         }
       }
+
+      if (result.message) {
+        if (result.ErrCode === 'Y') {
+          Modal.success({
+            title: result.message
+          })
+        } else if (result.ErrCode === 'S') {
+          notification.success({
+            top: 92,
+            message: result.message,
+            duration: 2
+          })
+        }
+      }
     } else {
       this.setState({
         loading: false
       })
       this.timer && this.timer.stop()
       
+      if (!result.message) return
       if (result.ErrCode === 'N') {
         Modal.error({
           title: result.message,
         })
-      } else {
+      } else if (result.ErrCode !== '-2') {
         notification.error({
           top: 92,
           message: result.message,
@@ -611,15 +626,17 @@
 
     if (config.uuid !== menuId) return
     
-    let _data = fromJS(this.state.data).toJS().forEach(item => {
+    let _data = fromJS(this.state.data).toJS().map(item => {
       if (item.$$uuid === uuid) {
         item[btn.field] = count
       }
+      return item
     })
-    let _selectedData = fromJS(this.state.selectedData).toJS().forEach(item => {
+    let _selectedData = fromJS(this.state.selectedData).toJS().map(item => {
       if (item.$$uuid === uuid) {
         item[btn.field] = count
       }
+      return item
     })
 
     this.setState({

--
Gitblit v1.8.0