From 6b202fcb9446a289d64dd1a36e881b688c9bb72b Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期五, 28 七月 2023 19:25:19 +0800
Subject: [PATCH] 2023-07-28

---
 src/tabviews/custom/components/carousel/prop-card/index.jsx |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/tabviews/custom/components/carousel/prop-card/index.jsx b/src/tabviews/custom/components/carousel/prop-card/index.jsx
index ba2b928..0088328 100644
--- a/src/tabviews/custom/components/carousel/prop-card/index.jsx
+++ b/src/tabviews/custom/components/carousel/prop-card/index.jsx
@@ -160,6 +160,8 @@
       
               this.setState({data: _data})
             })
+          } else {
+            this.openModal()
           }
         } else {
           if (!this.loaded) {
@@ -188,7 +190,7 @@
       } else if (this.loaded) {
         this.openModal()
       }
-    } else if (config.wrap.display === 'modal' && config.wrap.datatype === 'static') {
+    } else if (config.wrap.datatype === 'static') {
       this.openModal()
     }
   }
@@ -215,9 +217,7 @@
     this.loaded = true
 
     this.setState({data: _data}, () => {
-      if (config.wrap.display === 'modal') {
-        this.openModal()
-      }
+      this.openModal()
     })
 
     window.GLOB.SyncData.delete(config.dataName)
@@ -237,6 +237,8 @@
 
   openModal = (ErrCode) => {
     const { config, data } = this.state
+
+    if (config.wrap.display !== 'modal') return
     
     let code = config.wrap.code || ('modal' + config.uuid)
     let tip = localStorage.getItem(code)
@@ -374,9 +376,7 @@
         data: _data,
         loading: false
       }, () => {
-        if (config.wrap.display === 'modal') {
-          this.openModal(result.ErrCode)
-        }
+        this.openModal(result.ErrCode)
       })
 
       if (config.timer && config.clearField && result.data && result.data[0]) {

--
Gitblit v1.8.0