c.loadMore()}
- >
+
{model.groupMode !== 'NONE' ? renderGroup() : renderDefault()}
-
+
);
};
--
Gitee
From 4d06fa89083f6c63c50122e80c007d532fc8a568 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9C=B1=E6=94=BF=E6=9D=83?= <1978141412@qq.com>
Date: Tue, 8 Oct 2024 19:57:19 +0800
Subject: [PATCH 2/3] =?UTF-8?q?style:=20=E4=BF=AE=E5=A4=8D=E5=A4=9A?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=BF=94=E5=9B=9E=E9=A1=B6=E9=83=A8=E6=B6=88?=
=?UTF-8?q?=E5=A4=B1=E5=BC=82=E5=B8=B8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/control/list/md-ctrl/md-ctrl.scss | 13 ++++++++++++-
.../view-content-panel-container.scss | 1 +
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/src/control/list/md-ctrl/md-ctrl.scss b/src/control/list/md-ctrl/md-ctrl.scss
index de10dd40..63504379 100644
--- a/src/control/list/md-ctrl/md-ctrl.scss
+++ b/src/control/list/md-ctrl/md-ctrl.scss
@@ -30,7 +30,6 @@ $control-mobmdctrl: (
.van-list {
height: 100%;
- overflow-y: auto;
.van-cell {
padding: getCssVar(control-mobmdctrl, padding);
@@ -65,6 +64,18 @@ $control-mobmdctrl: (
@include m(right) {
margin-right: getCssVar(control-mobmdctrl, right-icon-margin-right);
}
+
+ padding: 0.875rem 0;
+ &::after {
+ content: '';
+ position: relative;
+ display: block;
+ bottom: -0.875rem;
+ left: 1rem;
+ height: rem(1px);
+ width: calc(100% - 2rem);
+ background-color: getCssVar(color, border);
+ }
}
@include b(control-mobmdctrl-image) {
diff --git a/src/panel-component/view-content-panel-container/view-content-panel-container.scss b/src/panel-component/view-content-panel-container/view-content-panel-container.scss
index 0879ec77..5b716f3b 100644
--- a/src/panel-component/view-content-panel-container/view-content-panel-container.scss
+++ b/src/panel-component/view-content-panel-container/view-content-panel-container.scss
@@ -6,6 +6,7 @@ $panel-component-view-content: ('margin': 0);
height: 100%;
margin-top: getCssVar('panel-component-view-content', 'margin');
overflow: visible;
+ background-color: getCssVar(view, bg, color);
@include when(scroll) {
overflow-y: auto;
--
Gitee
From 98ff27464601ccf5c0784046e55976508bc57f1e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9C=B1=E6=94=BF=E6=9D=83?= <1978141412@qq.com>
Date: Tue, 8 Oct 2024 20:00:16 +0800
Subject: [PATCH 3/3] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=97=A5?=
=?UTF-8?q?=E5=BF=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
CHANGELOG.md | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e053620..3263a3e3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,14 @@
- 添加富文本编辑器
+### Change
+
+- 卡片视图绘制为卡片样式
+
+### Fixed
+
+- 修复多数据返回顶部消失异常
+
## [0.0.24] - 2024-09-29
### Added
--
Gitee