From f514513217825e1460ab9ce7598a72b56bf9f4e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BE=90=E9=A3=9E=E6=B4=8B?=
<15778543+xufeiyang6017@user.noreply.gitee.com>
Date: Sat, 24 Jan 2026 17:14:59 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9A=82=E6=97=A0=E6=9B=B4?=
=?UTF-8?q?=E5=A4=9A=E5=95=86=E5=93=81=E9=80=89=E6=8B=A9=E5=92=8C=E8=A7=84?=
=?UTF-8?q?=E6=A0=BC=E9=80=89=E6=8B=A9=E6=8F=90=E7=A4=BA=EF=BC=8C=E8=A7=A3?=
=?UTF-8?q?=E5=86=B3=E8=A7=84=E6=A0=BC=E6=A1=86=E8=A2=AB=E9=81=AE=E6=8C=A1?=
=?UTF-8?q?=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/evaluate1/index.wxml | 5 +++++
pages/evaluate1/index.wxss | 24 ++++++++++++++++++++++++
pages/evaluate1/product-list.wxml | 5 +++++
pages/evaluate1/product-list.wxss | 18 ++++++++++++++++++
4 files changed, 52 insertions(+)
diff --git a/pages/evaluate1/index.wxml b/pages/evaluate1/index.wxml
index b684b08..0a664b1 100644
--- a/pages/evaluate1/index.wxml
+++ b/pages/evaluate1/index.wxml
@@ -61,6 +61,11 @@
→
+
+
+
+ 暂无更多规格选择
+
diff --git a/pages/evaluate1/index.wxss b/pages/evaluate1/index.wxss
index a68830e..1e117b3 100644
--- a/pages/evaluate1/index.wxss
+++ b/pages/evaluate1/index.wxss
@@ -424,3 +424,27 @@
font-size: 28rpx;
}
}
+
+/* 暂无更多规格提示 */
+.no-more {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 48rpx 0;
+ margin-top: 16rpx;
+ margin-bottom: 100rpx; /* 添加底部边距,避免被导航栏遮挡 */
+}
+
+.no-more-text {
+ font-size: 24rpx;
+ color: #999;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 12rpx 32rpx;
+ border-radius: 30rpx;
+ font-weight: 500;
+}
+
+/* 调整规格网格布局,确保不被导航栏遮挡 */
+.spec-section {
+ margin-bottom: 40rpx;
+}
diff --git a/pages/evaluate1/product-list.wxml b/pages/evaluate1/product-list.wxml
index a9a526e..f0ebaa9 100644
--- a/pages/evaluate1/product-list.wxml
+++ b/pages/evaluate1/product-list.wxml
@@ -39,6 +39,11 @@
→
+
+
+
+ 暂无更多商品选择
+
\ No newline at end of file
diff --git a/pages/evaluate1/product-list.wxss b/pages/evaluate1/product-list.wxss
index 3c82648..77c9966 100644
--- a/pages/evaluate1/product-list.wxss
+++ b/pages/evaluate1/product-list.wxss
@@ -278,3 +278,21 @@
font-size: 50rpx;
}
}
+
+/* 暂无更多商品提示 */
+.no-more {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 48rpx 0;
+ margin-top: 16rpx;
+}
+
+.no-more-text {
+ font-size: 24rpx;
+ color: #999;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 12rpx 32rpx;
+ border-radius: 30rpx;
+ font-weight: 500;
+}