管灌系统农户端微信小程序(嘉峪关应用)
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-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #f5f5f5;
  overflow: hidden;
}
 
/* 标签页样式 */
.tabs {
  display: flex;
  background-color: #fff;
  padding: 20rpx 0;
  width: 100%;
  flex-shrink: 0; /* 防止被压缩 */
  box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.05);
  border-bottom: 1rpx solid #eaeaea;
  position: relative;
  z-index: 10;
}
 
.tab {
  flex: 1;
  text-align: center;
  font-size: 29rpx;
  color: #666;
  position: relative;
  padding: 20rpx 0;
}
 
.tab.active {
  color: #0052d9;
  font-weight: 500;
}
 
.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50rpx;
  height: 4rpx;
  background-color: #0052d9;
  border-radius: 2rpx;
}
 
/* 列表容器样式 */
.scroll-view {
  flex: 1;
  overflow: hidden;
  padding-bottom: 140rpx; /* 增加底部内边距,为按钮留出更多空间 */
  background-color: #f5f5f5; /* 确保背景色与tabs不同 */
  margin-top: 10rpx; /* 与顶部tab保持一点距离 */
}
 
.scroll-bg {
  padding: 20rpx;
  padding-bottom: 40rpx; /* 添加底部内边距,防止最后一项被遮挡 */
}
 
/* 列表项样式 */
.list-item {
  background-color: #fff;
  border-radius: 16rpx;
  margin-bottom: 20rpx;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
}
 
/* 状态标签样式 */
.status-tag {
  position: absolute;
  top: 20rpx;
  right: 20rpx;
  padding: 4rpx 16rpx;
  border-radius: 20rpx;
  font-size: 24rpx;
  color: #fff;
}
 
.status-tag.draft {
  background-color: #9E9E9E;
}
 
.status-tag.published {
  background-color: #90CAF9;
}
 
.status-tag.executing {
  background-color: #2196F3;
}
 
.status-tag.completed {
  background-color: #4CAF50;
}
 
.status-tag.terminated {
  background-color: #F44336;
  color: #ffffff;
}
 
/* 内容区域样式 */
.item-content {
  padding: 30rpx;
}
 
/* 标题区域样式 */
.title-section {
  margin-bottom: 30rpx;
}
 
.plan-title {
  font-size: 32rpx;
  font-weight: 500;
  color: #333;
  margin-bottom: 8rpx;
}
 
.project-name {
  font-size: 28rpx;
  color: #666;
}
 
/* 信息区域样式 */
.info-section {
  margin-bottom: 30rpx;
}
 
/* 信息网格 */
.info-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 12rpx;
}
 
.info-item {
  display: flex;
  align-items: flex-start;
  /* 横向布局时占据一半宽度 */
  width: 48%;
}
 
/* 纵向布局的信息网格 */
.vertical-layout {
  flex-direction: column;
  gap: 16rpx;
}
 
.vertical-layout .info-item {
  width: 100%;
  margin-bottom: 16rpx;
}
 
/* 历史列表特定样式 */
.history-grid {
  flex-direction: column;
  gap: 20rpx;
}
 
.info-icon {
  width: 40rpx;
  height: 40rpx;
  margin-right: 16rpx;
}
 
.info-icon.duration-icon {
  width: 35rpx;
  height: 35rpx;
  margin-right: 16rpx;
}
 
.info-icon image {
  width: 100%;
  height: 100%;
}
 
.info-content {
  flex: 1;
}
 
.info-label {
  font-size: 26rpx;
  color: #999;
  margin-bottom: 4rpx;
}
 
.info-value {
  font-size: 29rpx;
  color: #333;
}
 
/* 执行中状态额外信息样式 */
.executing-info {
  margin-top: 20rpx;
  padding-top: 20rpx;
  border-top: 1rpx solid #f5f5f5;
}
 
/* 操作按钮区域样式 */
.action-section {
  display: flex;
  justify-content: flex-end;
  gap: 20rpx;
  padding-top: 20rpx;
  border-top: 1rpx solid #f5f5f5;
  width: 100%;
  position: relative;
  z-index: 1;
}
 
.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20rpx;
  width: 100%;
}
 
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8rpx;
  padding: 12rpx 24rpx;
  border-radius: 8rpx;
  font-size: 28rpx;
  line-height: 1;
  min-width: 160rpx;
  height: 60rpx;
  margin: 0;
  background-color: #1890FF;
  color: #fff;
  border: none;
  position: relative;
  z-index: 2;
}
 
.action-button::after {
  display: none;
}
 
.action-button image {
  width: 32rpx;
  height: 32rpx;
  display: block;
}
 
.action-button text {
  color: #fff;
  display: block;
}
 
.publish-button {
  background-color: #1890FF !important;
}
 
.delete-button {
  background-color: #ff4d4f !important;
}
 
.stop-button {
  background-color: #ff4d4f !important;
}
 
.execute-button {
  background-color: #1890FF !important;
}
 
/* 空状态样式 */
.empty-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100rpx 0;
}
 
.empty-icon {
  width: 200rpx;
  height: 200rpx;
  margin-bottom: 20rpx;
}
 
.empty-text {
  font-size: 28rpx;
  color: #999;
}
 
/* 底部按钮样式 */
.bottom-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20rpx;
  background-color: #fff;
  box-shadow: 0 -2rpx 12rpx rgba(0, 0, 0, 0.05);
  z-index: 100;
}
 
.add-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1890FF;
  color: #fff;
  border-radius: 8rpx;
  font-size: 30rpx;
  padding: 5rpx 0;
}
 
.add-button image {
  width: 36rpx;
  height: 36rpx;
  margin-right: 8rpx;
}
 
/* 按钮点击效果 */
.publish-button-hover {
  opacity: 0.8 !important;
}
 
.delete-button-hover {
  opacity: 0.8 !important;
}
 
.stop-button-hover {
  opacity: 0.8 !important;
}
 
.execute-button-hover {
  opacity: 0.8 !important;
}
 
.add-button-hover {
  opacity: 0.8;
}
 
/* 加载更多样式 */
.loading-more-container {
  padding: 20rpx 0;
  text-align: center;
}
 
.loading-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20rpx 0;
}
 
.loading-dot {
  width: 16rpx;
  height: 16rpx;
  border-radius: 50%;
  background-color: #0052d9;
  margin: 0 8rpx;
  animation: loading 1.4s infinite ease-in-out both;
}
 
.loading-dot:nth-child(1) {
  animation-delay: -0.32s;
}
 
.loading-dot:nth-child(2) {
  animation-delay: -0.16s;
}
 
@keyframes loading {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
 
.loading-more text {
  margin-left: 12rpx;
  font-size: 28rpx;
  color: #999;
}
 
.no-more-data {
  color: #999;
  font-size: 26rpx;
  line-height: 80rpx;
}
 
/* 刷新动画样式 */
.refresh-view {
  text-align: center;
  height: 80rpx;
  line-height: 80rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.refresh-view .dot {
  width: 16rpx;
  height: 16rpx;
  background-color: #0052d9;
  border-radius: 50%;
  margin: 0 8rpx;
  animation: refresh 1.4s infinite ease-in-out both;
}
 
.refresh-view .dot:nth-child(1) {
  animation-delay: -0.32s;
}
 
.refresh-view .dot:nth-child(2) {
  animation-delay: -0.16s;
}
 
@keyframes refresh {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }