管灌系统农户端微信小程序(嘉峪关应用)
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
.irrigation-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #f5f5f5;
  padding: 20rpx;
  box-sizing: border-box;
}
 
/* 顶部标签页样式 */
.tabs {
  display: flex;
  background-color: #fff;
  border-radius: 12rpx;
  margin-bottom: 20rpx;
  overflow: hidden;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  position: relative;
}
 
.tab {
  flex: 1;
  text-align: center;
  padding: 30rpx 0;
  font-size: 28rpx;
  color: #666;
  position: relative;
  transition: all 0.2s ease;
}
 
.tab-hover {
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.03);
}
 
.tab:active {
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.03);
}
 
.tab.active {
  color: rgba(45, 139, 247, 1);
  font-weight: bold;
}
 
.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: 6rpx;
  background-color: rgba(45, 139, 247, 1);
  border-radius: 3rpx;
}
 
/* 刷新按钮和分隔线 */
.refresh-header {
  display: flex;
  justify-content: flex-end;
  padding: 10rpx 20rpx;
}
 
.refresh-button {
  font-size: 28rpx;
  color: #fff;
  background-color: rgba(45, 139, 247, 1);
  border: none;
  border-radius: 5px;
  padding: 10rpx 20rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.refresh-button:active {
  background-color: #1a6fc7;
}
 
.divider {
  height: 1rpx;
  background-color: #e0e0e0;
  margin: 10rpx 0;
}
 
/* 下拉刷新动画 */
.refresh-view {
  text-align: center;
  padding: 30rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.dot {
  width: 20rpx;
  height: 20rpx;
  background-color: rgba(45, 139, 247, 1);
  border-radius: 50%;
  margin: 0 5px;
  animation: blink 1.4s infinite both;
}
 
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
 
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
 
@keyframes blink {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
 
/* scroll-view样式 */
.scroll-view {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20rpx;
  height: calc(100vh - 180rpx); /* 减去顶部标签页和底部按钮的高度 */
}
 
.scroll-bg {
  padding: 10rpx 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
 
/* 中间列表样式 */
.irrigation-list {
  flex: 1;
  background-color: transparent;
  margin-bottom: 20rpx;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
 
.list-title {
  font-size: 28rpx;
  font-weight: bold;
  color: #333;
  padding: 20rpx;
  background-color: #f8f8f8;
  border-bottom: 1rpx solid #eee;
}
 
.list-item {
  padding: 30rpx;
  padding-bottom: 90rpx;
  position: relative;
  background-color: #fff;
  border-radius: 12rpx;
  margin-bottom: 16rpx;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
 
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rpx;
  margin-top: 10rpx;
}
 
.item-title {
  font-size: 28rpx;
  font-weight: bold;
  color: #333;
}
 
.item-status {
  font-size: 24rpx;
  color: #999;
  padding: 4rpx 12rpx;
  border-radius: 20rpx;
 
  display: flex;
  align-items: center;
}
 
.status-icon {
  width: 70rpx;
  height: 70rpx;
 
}
 
.status-active {
  color: #fff;
  background-color: rgba(45, 139, 247, 1);
}
 
.status-draft {
  color: #fff;
  background-color: #999;
}
 
.status-published {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00AD45;
  background-color: rgba(0, 173, 69, 0.1);
}
 
.status-published-icon {
  width: 34rpx;
  height: 34rpx;
  margin-right: 6rpx;
}
 
.item-info {
  font-size: 24rpx;
  color: #666;
  margin-right: 160rpx;
}
 
.info-row {
  display: flex;
  margin-bottom: 8rpx;
  align-items: flex-end; /* 添加底部对齐 */
}
 
/* 编号行样式 - 作为标题突出显示 */
.title-row {
  margin-bottom: 10rpx;
}
 
.title-row .info-label,
.title-row .info-value {
  font-size: 26rpx;
  font-weight: bold;
  color: #333;
}
 
.info-label {
  color: #999;
  width: 150rpx;
  margin-right: 10rpx; /* 添加右侧间距 */
}
 
/* 为已灌溉时间和轮组添加特殊样式 */
.info-row.irrigated-row {
  margin-top: 12rpx;
  margin-bottom: 12rpx;
  align-items: center !important; /* 强制垂直居中对齐 */
  display: flex;
  justify-content: flex-start; /* 水平方向起点对齐 */
  height: 50rpx; /* 固定行高 */
}
 
.info-row.irrigated-row .info-label {
  display: flex;
  align-items: center;
  height: 100%; /* 使用百分比高度 */
}
 
.info-value-time {
  font-size: 30rpx;
  font-weight: bold;
  color: rgb(42, 130, 228);
  display: flex;
  align-items: center;
  height: 100%; /* 使用与info-label相同的高度 */
}
 
/* 空列表容器 */
.empty-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 12rpx;
  box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  width: 100%;
  height: calc(100vh - 250rpx); /* 减去顶部标签页、底部按钮和内边距的高度 */
  min-height: 500rpx;
}
 
.empty-icon {
  width: 200rpx;
  height: 200rpx;
  margin-bottom: 20rpx;
}
 
.empty-text {
  font-size: 28rpx;
  color: #999;
}
 
/* 底部按钮样式 */
.bottom-button {
  padding: 20rpx 0;
}
 
.add-button {
  background-color: rgba(45, 139, 247, 1);
  color: #fff;
  font-size: 32rpx;
  border-radius: 12rpx;
  width: 100%;
  transition: all 0.2s ease;
}
 
.add-button-hover {
  background-color: rgba(35, 110, 200, 1);
  transform: scale(0.98);
}
 
.add-button:active {
  background-color: rgba(35, 110, 200, 1);
  transform: scale(0.98);
}
 
/* 列表项操作按钮 */
.item-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 20rpx;
  right: 30rpx;
  z-index: 2;
}
 
.action-button {
  font-size: 24rpx;
  padding: 6rpx 20rpx;
  margin-left: 16rpx;
  border-radius: 30rpx;
  background-color: #fff;
  line-height: 1.5;
  min-height: auto;
  box-shadow: 0 2rpx 6rpx rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
 
.action-button-hover {
  transform: scale(0.95);
  box-shadow: 0 1rpx 3rpx rgba(0, 0, 0, 0.1);
}
 
.action-button:active {
  transform: scale(0.95);
  box-shadow: 0 1rpx 3rpx rgba(0, 0, 0, 0.1);
}
 
.publish-button {
  color: rgba(45, 139, 247, 1);
  border: 1rpx solid rgba(45, 139, 247, 1);
}
 
.publish-button-hover {
  background-color: rgba(45, 139, 247, 0.1);
}
 
.publish-button:active {
  background-color: rgba(45, 139, 247, 0.1);
}
 
.stop-button {
  color: #f56c6c;
  border: 1rpx solid #f56c6c;
}
 
.stop-button-hover {
  background-color: rgba(245, 108, 108, 0.1);
}
 
.stop-button:active {
  background-color: rgba(245, 108, 108, 0.1);
}
 
.execute-button {
  color: rgba(45, 139, 247, 1);
  border: 1rpx solid rgba(45, 139, 247, 1);
}
 
.execute-button-hover {
  background-color: rgba(45, 139, 247, 0.1);
}
 
.execute-button:active {
  background-color: rgba(45, 139, 247, 0.1);