From dcfe83a022f2c4aa2a707baa6d5e98a67753bf76 Mon Sep 17 00:00:00 2001
From: zuoxiao <zuoxiao>
Date: 星期二, 18 三月 2025 16:11:12 +0800
Subject: [PATCH] 添加clientId字段到全局状态,优化请求参数处理,更新页面路由,调整取水口和灌溉相关界面,增强用户体验。
---
pages/createIrrigation/createIrrigation.wxss | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/pages/createIrrigation/createIrrigation.wxss b/pages/createIrrigation/createIrrigation.wxss
index 93c27a6..e91a1ec 100644
--- a/pages/createIrrigation/createIrrigation.wxss
+++ b/pages/createIrrigation/createIrrigation.wxss
@@ -162,6 +162,25 @@
align-items: center;
padding: 25rpx 30rpx;
border-top: 1rpx solid #eee;
+ position: relative;
+ transition: all 0.3s ease;
+}
+
+.group-item::after {
+ content: '';
+ position: absolute;
+ right: 15rpx;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 16rpx;
+ height: 16rpx;
+ border-top: 2rpx solid #999;
+ border-right: 2rpx solid #999;
+ transform: translateY(-50%) rotate(45deg);
+}
+
+.group-item:active {
+ background-color: #e6f7ff;
}
.group-item.selected {
@@ -172,16 +191,44 @@
flex: 1;
display: flex;
align-items: center;
+ flex-wrap: wrap;
}
.group-name {
font-size: 26rpx;
color: #666;
+ position: relative;
+ padding-left: 10rpx;
+ background-color: rgba(24, 144, 255, 0.1);
+ padding: 4rpx 20rpx;
+ border-radius: 10rpx;
}
+
+.group-hint {
+ font-size: 22rpx;
+ color: #1890FF;
+ margin-left: 10rpx;
+ background-color: rgba(24, 144, 255, 0.1);
+ padding: 4rpx 10rpx;
+ border-radius: 10rpx;
+}
+
+/* .group-name::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 6rpx;
+ height: 6rpx;
+ background-color: #1890FF;
+ border-radius: 50%;
+} */
.group-duration {
display: flex;
align-items: center;
+ margin-right: 20rpx; /* 涓哄彸渚х澶寸暀鍑虹┖闂� */
}
.duration-input {
--
Gitblit v1.8.0