From 5c749cca9f4cbb7e0d16d305b9e6bdee03e50bee Mon Sep 17 00:00:00 2001
From: FCD <2453864257@qq.com>
Date: Mon, 26 Jan 2026 15:12:49 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=BB=84=E4=BB=B6=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/lanju/lj-list-row/index.vue | 88 ++++++++++++++++++++--
src/static/styles/index.scss | 37 +++++++++
2 files changed, 120 insertions(+), 5 deletions(-)
diff --git a/src/components/lanju/lj-list-row/index.vue b/src/components/lanju/lj-list-row/index.vue
index 9a98224..765a6e6 100644
--- a/src/components/lanju/lj-list-row/index.vue
+++ b/src/components/lanju/lj-list-row/index.vue
@@ -1,6 +1,18 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -8,22 +20,88 @@
diff --git a/src/static/styles/index.scss b/src/static/styles/index.scss
index cf7aa75..63f37a0 100644
--- a/src/static/styles/index.scss
+++ b/src/static/styles/index.scss
@@ -6,6 +6,19 @@
min-height: 100%;
}
+//查询条件
+.queryFrom {
+ background-color: #fff;
+ margin-top: 10px;
+ padding: 20rpx;
+ border-radius: 10rpx;
+ box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
+
+ .u-form-item {
+ line-height: 35rpx;
+ }
+}
+
//表单样式
.page-form {
background-color: #fff;
@@ -19,6 +32,30 @@
}
}
+//页面列表样式
+.page-list {
+ margin-top: 20rpx;
+ box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
+
+ .page-list-item {
+ margin-bottom: 20rpx;
+ background-color: #fff;
+ padding: 20rpx 20rpx 25rpx;
+ border-radius: 10rpx;
+
+ }
+
+ /* 奇数行背景色 */
+ .page-list-item:nth-child(odd) {
+ background-color: #ffffff;
+ }
+
+ /* 偶数行背景色 */
+ .page-list-item:nth-child(even) {
+ background-color: #f5f5f5;
+ }
+}
+
//底部按钮
.bottom-bar {