From 50433e86b718fab0d94ea1410724b29b5f53fa0a Mon Sep 17 00:00:00 2001
From: zuoxiao <zuoxiao>
Date: 星期三, 09 四月 2025 15:11:26 +0800
Subject: [PATCH] 更新SVG图标样式,优化灌溉计划和取水口页面逻辑,添加状态处理和信息提示功能;调整界面样式,提升用户体验。

---
 pages/irrigation/irrigation.wxss |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/pages/irrigation/irrigation.wxss b/pages/irrigation/irrigation.wxss
index 690a85d..5a4e019 100644
--- a/pages/irrigation/irrigation.wxss
+++ b/pages/irrigation/irrigation.wxss
@@ -39,7 +39,7 @@
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
-  width: 40rpx;
+  width: 50rpx;
   height: 4rpx;
   background-color: #0052d9;
   border-radius: 2rpx;
@@ -81,19 +81,24 @@
 }
 
 .status-tag.draft {
-  background-color: #ff9d00;
+  background-color: #9E9E9E;
 }
 
 .status-tag.published {
-  background-color: #0052d9;
+  background-color: #90CAF9;
 }
 
 .status-tag.executing {
-  background-color: #00a870;
+  background-color: #2196F3;
 }
 
 .status-tag.completed {
-  background-color: #999;
+  background-color: #4CAF50;
+}
+
+.status-tag.terminated {
+  background-color: #F44336;
+  color: #ffffff;
 }
 
 /* 鍐呭鍖哄煙鏍峰紡 */

--
Gitblit v1.8.0