From 79912db1a0f20a0bad10dd8afb63f8d73fbed5d8 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期四, 09 二月 2023 18:43:39 +0800
Subject: [PATCH] 2023-02-09

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

diff --git a/src/tabviews/custom/components/card/prop-card/index.jsx b/src/tabviews/custom/components/card/prop-card/index.jsx
index 2ad4a02..531d10a 100644
--- a/src/tabviews/custom/components/card/prop-card/index.jsx
+++ b/src/tabviews/custom/components/card/prop-card/index.jsx
@@ -499,14 +499,14 @@
         <NormalHeader config={config}/>
         <Row className={`card-row-list data-zoom ${config.wrap.wrapClass}`}>
           {config.subcards.map((item, index) => {
-            let className = item.setting.click ? 'mk-card pointer ' : 'mk-card '
+            let className = 'mk-card '
             if (activeKey === index) {
               className += 'active'
             }
 
             return (
-              <Col className={className} key={index} span={item.setting.width || 6} offset={item.offset || 0} onClick={() => {this.changeCard(index, item)}}>
-                <CardItem card={item} cards={config} data={data}/>
+              <Col className={className} key={index} span={item.setting.width || 6} offset={item.offset || 0}>
+                <CardItem card={item} cards={config} data={data} onClick={() => {this.changeCard(index, item)}}/>
               </Col>
             )
           })}

--
Gitblit v1.8.0