管灌系统农户端微信小程序(嘉峪关应用)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
.irrigation-detail-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #f5f5f5;
}
 
/* 顶部信息区域样式 */
.header-section {
  background-color: #ffffff;
  padding: 20rpx;
  border-bottom: 1rpx solid #e0e0e0;
}
 
.plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8rpx;
  min-height: 40rpx;
}
 
.plan-code {
  display: flex;
  align-items: center;
  flex: 1;
  line-height: 40rpx;
  flex-wrap: nowrap;
  white-space: nowrap;
}
 
.plan-code .label {
  color: #666;
  font-size: 30rpx;
  margin-right: 8rpx;
  min-width: 160rpx;
  flex-shrink: 0;
}
 
.plan-code .value {
  color: #333;
  font-size: 34rpx;
  font-weight: 500;
  white-space: normal;
  word-break: break-all;
}
 
/* 状态标签样式 */
.plan-status {
  padding: 4rpx 16rpx;
  border-radius: 20rpx;
  font-size: 26rpx;
  color: #fff;
  text-align: center;
  margin-left: 20rpx;
}
 
.plan-status.draft {
  background-color: #9E9E9E;
}
 
.plan-status.published {
  background-color: #90CAF9;
}
 
.plan-status.executing {
  background-color: #2196F3;
}
 
.plan-status.completed {
  background-color: #4CAF50;
}
 
.plan-status.terminated {
  background-color: #F44336;
}
 
.time-info, .project-info {
  display: flex;
  align-items: center;
  margin-top: 8rpx;
  flex-wrap: nowrap;
  white-space: nowrap;
}
 
.time-info .label, .project-info .label {
  color: #666;
  font-size: 30rpx;
  min-width: 180rpx;
  flex-shrink: 0;
}
 
.time-info .value, .project-info .value {
  color: #333;
  font-size: 30rpx;
  font-weight: 500;
  white-space: normal;
  word-break: break-all;
}
 
/* 实际中止时间高亮样式 */
.time-info .highlight-text {
  color: #F44336;
  font-weight: bold;
  background-color: rgba(244, 67, 54, 0.1);
  padding: 4rpx 12rpx;
  border-radius: 4rpx;
  font-size: 30rpx;
}
 
/* 命令发布失败数样式 */
.time-info .error-text {
  color: #ff4d4f;
  font-weight: bold;
  background-color: rgba(255, 77, 79, 0.1);
  padding: 4rpx 12rpx;
  border-radius: 4rpx;
  display: inline-block;
  font-size: 30rpx;
}
 
/* 项目列表样式 */
.project-list {
  flex: 1;
  overflow: hidden;
}
 
.scroll-content {
  padding: 20rpx;
}
 
.project-item {
  margin-bottom: 30rpx;
  border-radius: 12rpx;
  overflow: hidden;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}
 
.project-header {
  background-color: #FFFFFF;
  padding: 20rpx 30rpx;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
 
/* 所有项目标题都有圆角 */
.project-item .project-header {
  border-radius: 12rpx;
}
 
/* 展开状态的项目标题只有顶部圆角 */
.project-item.expanded .project-header {
  border-radius: 12rpx 12rpx 0 0;
}
 
.toggle-icon {
  width: 32rpx;
  height: 32rpx;
  margin-right: 16rpx;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 6rpx;
}
 
.toggle-icon.expanded {
  transform: rotate(180deg);
}
 
.project-info {
  flex: 1;
  width: calc(100% - 48rpx);
}
 
.project-name {
  font-size: 34rpx;
  font-weight: bold;
  color: #333333;
  word-break: break-all;
}
 
.project-duration {
  font-size: 28rpx;
  color: #666666;
  margin-top: 10rpx;
}
 
/* 轮灌组列表样式 */
.group-list {
  flex: 1;
  overflow: hidden;
}
 
.group-item {
  background-color: #ffffff;
  border-radius: 12rpx;
  padding: 20rpx;
  margin-bottom: 20rpx;
  box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
}
 
.group-status-indicator {
  display: flex;
  align-items: center;
  margin-left: auto;
  background-color: #f5f7fa;
  padding: 4rpx 10rpx;
  border-radius: 8rpx;
}
 
.status-dot {
  width: 16rpx;
  height: 16rpx;
  border-radius: 50%;
  margin-right: 8rpx;
  flex-shrink: 0;
}
 
.group-item.pending .status-dot {
  background-color: #ffd700;
}
 
.group-item.in_progress .status-dot {
  background-color: #4CAF50;
}
 
.group-item.completed .status-dot {
  background-color: #2196F3;
}
 
.group-item.terminated .status-dot {
  background-color: #F44336;
}
 
.group-item.canceled .status-dot {
  background-color: #9E9E9E;
}
 
.status-text {
  font-size: 28rpx;
  color: #666;
  flex-shrink: 0;
}
 
.group-item.pending .status-text {
  color: #e6c100;
}
 
.group-item.in_progress .status-text {
  color: #4CAF50;
}
 
.group-item.completed .status-text {
  color: #2196F3;
}
 
.group-item.terminated .status-text {
  color: #F44336;
}
 
.group-item.canceled .status-text {
  color: #9E9E9E;
}
 
/* 根据不同状态显示不同背景色 */
.group-item.pending .group-status-indicator {
  background-color: rgba(255, 215, 0, 0.1);
}
 
.group-item.in_progress .group-status-indicator {
  background-color: rgba(76, 175, 80, 0.1);
}
 
.group-item.completed .group-status-indicator {
  background-color: rgba(33, 150, 243, 0.1);
}
 
.group-item.terminated .group-status-indicator {
  background-color: rgba(244, 67, 54, 0.1);
}
 
.group-item.canceled .group-status-indicator {
  background-color: rgba(158, 158, 158, 0.1);
}
 
/* 轮灌组信息样式 */
.group-info {
  margin-top: 12rpx;
}
 
.group-name-row {
  display: flex;
  align-items: center;
  margin-bottom: 12rpx;
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}
 
.group-index {
  color: #1890FF;
  margin-right: 8rpx;
  font-size: 34rpx;
  flex-shrink: 0;
}
 
.group-label {
  font-size: 34rpx;
  color: #666;
  margin-right: 8rpx;
  flex-shrink: 0;
  min-width: 140rpx;
}
 
.group-name {
  font-size: 34rpx;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
  white-space: normal;
  word-break: break-all;
}
 
.group-time-info {
  display: flex;
  flex-direction: column;
  gap: 8rpx;
}
 
.time-row {
  display: flex;
  align-items: center;
}
 
.time-label {
  color: #666;
  font-size: 31rpx;
  width: 160rpx;
  flex-shrink: 0;
}
 
.time-value {
  color: #333;
  font-size: 28rpx;
}
 
/* 取水口信息样式 */
.intake-info {
  margin-top: 20rpx;
  border-top: 1rpx dashed #e0e0e0;
  padding-top: 16rpx;
}
 
.intake-header {
  font-size: 30rpx;
  color: #333;
  font-weight: 500;
  margin-bottom: 12rpx;
}
 
.intake-list {
  display: flex;
  flex-direction: column;
  gap: 10rpx;
}
 
.intake-item {
  background-color: #f9f9f9;
  border-radius: 8rpx;
  padding: 12rpx 16rpx;
}
 
.intake-item.success {
  border-left: 4rpx solid #4CAF50;
}
 
.intake-item.error {
  border-left: 4rpx solid #F44336;
}
 
.intake-name {
  display: flex;
  align-items: center;
  font-size: 28rpx;
  color: #333;
}
 
.intake-status-dot {
  width: 12rpx;
  height: 12rpx;
  border-radius: 50%;
  margin-right: 8rpx;
}
 
.intake-item.success .intake-status-dot {
  background-color: #4CAF50;
}
 
.intake-item.error .intake-status-dot {
  background-color: #F44336;
}
 
.intake-result {
  margin-top: 6rpx;
  font-size: 26rpx;
  color: #F44336;
  padding-left: 20rpx;
}
 
.failure-count {
  margin-top: 10rpx;
  font-size: 30rpx;
}
 
.failure-count .label {
  color: #666;
}
 
.failure-count .error-text {
  color: #ff4d4f;
  font-weight: bold;
  margin-left: 8rpx;