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 {