From a9b02f6862522b54d0824152017bf2acfec2af7b Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 21 三月 2024 10:29:50 +0800 Subject: [PATCH] 2024-03-21 --- src/tabviews/custom/components/card/table-card/index.jsx | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/src/tabviews/custom/components/card/table-card/index.jsx b/src/tabviews/custom/components/card/table-card/index.jsx index 837dc07..ffc4b04 100644 --- a/src/tabviews/custom/components/card/table-card/index.jsx +++ b/src/tabviews/custom/components/card/table-card/index.jsx @@ -553,8 +553,6 @@ if (config.wrap.parity === 'true') { if (lindex % 2 === 1) { className += ' mk-even-line' - } else { - className += ' mk-odd-line' } } @@ -617,7 +615,7 @@ selectedData={[]} /> : null } - <Row className="card-row-list" style={{height: config.wrap.contentHeight}}> + <Row className={`card-row-list ${config.wrap.hover === 'true' ? 'mk-hover' : ''}`} style={{height: config.wrap.contentHeight}}> {precards.map((item, index) => ( <Col key={index} className="extend-card" span={24}> <div className="card-item-box" style={item.style}> -- Gitblit v1.8.0