管灌系统农户端微信小程序(嘉峪关应用)
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
// pages/stationMonitor/stationMonitor.js
const {
  get,
  post
} = require('../../api/request.js');
 
Page({
 
  /**
   * 页面的初始数据
   */
  data: {
    activeTab: 'weather', // 默认选中气象站
    cameraList: [],
    isLoading: false,
    // 气象站相关数据
    weatherStationList: [],
    selectedWeatherStationIndex: 0,
    currentWeatherStation: null,
    // 水肥机相关数据
    fertilizerStationList: [],
    selectedFertilizerStationIndex: 0,
    currentFertilizerStation: null,
    // 土壤墒情站相关数据
    soilStationList: [],
    selectedSoilStationIndex: 0,
    currentSoilStation: null,
    //摄像头相关
    accessToken: 'at.4l27eilo2x0euquw4yrhjxnz9kvr294l-2dp10mcwig-1nnzr8p-7wp71d2bk',
    hslUrl: '',
    // 设备信息
    deviceInfo: null,
    isRealDevice: false,
    deviceSpecificConfig: {
      videoHeight: 400,
      buttonHeight: 72,
      fontSize: 26
    },
    // 分页相关数据
    currentPage: 1,
    pageSize: 4,
    totalCount: 0,
    totalPages: 0
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    // 检测设备类型和屏幕信息
    this.detectDeviceInfo();
    
    // 页面加载时获取摄像头信息
    this.getCameraList();
    // 获取所有设备信息(气象站、土壤墒情站、水肥机)
    this.getAllDeviceInfo();
  },
 
  /**
   * 检测设备信息
   */
  detectDeviceInfo() {
    try {
      const systemInfo = wx.getSystemInfoSync();
      console.log('设备信息:', systemInfo);
      
      // 检测是否为真机
      const isRealDevice = systemInfo.platform === 'android' || systemInfo.platform === 'ios';
      
      // 检测屏幕尺寸
      const screenWidth = systemInfo.screenWidth;
      const screenHeight = systemInfo.screenHeight;
      const pixelRatio = systemInfo.pixelRatio;
      
      // 检测微信版本
      const version = systemInfo.version;
      
      this.setData({
        deviceInfo: {
          platform: systemInfo.platform,
          isRealDevice: isRealDevice,
          screenWidth: screenWidth,
          screenHeight: screenHeight,
          pixelRatio: pixelRatio,
          version: version,
          model: systemInfo.model,
          system: systemInfo.system
        }
      });
      
      console.log('设备检测结果:', {
        isRealDevice,
        screenWidth,
        screenHeight,
        pixelRatio,
        version
      });
      
      // 根据设备信息调整布局
      this.adjustLayoutForDevice();
      
    } catch (error) {
      console.error('获取设备信息失败:', error);
    }
  },
 
  /**
   * 根据设备信息调整布局
   */
  adjustLayoutForDevice() {
    const { deviceInfo } = this.data;
    if (!deviceInfo) return;
    
    // 真机特殊处理
    if (deviceInfo.isRealDevice) {
      console.log('检测到真机,应用特殊优化');
      
      // 真机上可能需要调整一些参数
      this.setData({
        isRealDevice: true,
        // 可以根据设备信息调整其他参数
        deviceSpecificConfig: {
          videoHeight: deviceInfo.screenHeight < 700 ? 320 : 400,
          buttonHeight: deviceInfo.screenHeight < 700 ? 64 : 72,
          fontSize: deviceInfo.pixelRatio > 2 ? 24 : 26
        }
      });
    } else {
      console.log('检测到模拟器');
      this.setData({
        isRealDevice: false
      });
    }
  },
 
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady() {
 
  },
 
  /**
   * 生命周期函数--监听页面显示
   */
  onShow() {
    console.log('=== 页面显示 ===');
    console.log('当前页面数据:', {
      activeTab: this.data.activeTab,
      cameraList: this.data.cameraList,
      deviceInfo: this.data.deviceInfo,
      deviceSpecificConfig: this.data.deviceSpecificConfig
    });
    
    // 检查ezplayer组件的状态
    if (this.data.activeTab === 'camera') {
      console.log('摄像头页面激活,检查组件状态');
      this.data.cameraList.forEach(camera => {
        console.log(`摄像头 ${camera.name} 状态:`, {
          id: camera.id,
          online: camera.online,
          hslUrl: camera.hslUrl,
          isLoadingUrl: camera.isLoadingUrl,
          urlError: camera.urlError,
          isPlaying: camera.isPlaying
        });
      });
    }
  },
 
  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide() {
 
  },
 
  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload() {
 
  },
 
  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh() {
    // 下拉刷新时重新获取数据
    if (this.data.activeTab === 'camera') {
      this.getCameraList();
    } else if (this.data.activeTab === 'weather' || this.data.activeTab === 'soil' || this.data.activeTab === 'fertilizer') {
      this.getAllDeviceInfo();
    }
    wx.stopPullDownRefresh();
  },
 
  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom() {
 
  },
 
  /**
   * 用户点击右上角分享
   */
  onShareAppMessage() {
 
  },
 
  /**
   * 切换选项卡
   */
  switchTab(e) {
    const tab = e.currentTarget.dataset.tab;
    console.log('切换到:', tab);
    this.setData({
      activeTab: tab
    });
 
    // 如果切换到摄像头选项卡,确保有数据
    if (tab === 'camera' && this.data.cameraList.length === 0) {
      this.getCameraList();
    }
 
    // 如果切换到气象站选项卡,确保有数据
    if (tab === 'weather' && this.data.weatherStationList.length === 0) {
      this.getAllDeviceInfo();
    }
 
    // 如果切换到土壤墒情站选项卡,确保有数据
    if (tab === 'soil' && this.data.soilStationList.length === 0) {
      this.getAllDeviceInfo();
    }
 
    // 如果切换到水肥机选项卡,确保有数据
    if (tab === 'fertilizer' && this.data.fertilizerStationList.length === 0) {
      this.getAllDeviceInfo();
    }
  },
 
  /**
   * 获取所有设备信息(气象站、土壤墒情站、水肥机)
   */
  getAllDeviceInfo() {
    const app = getApp();
 
    // 检查登录状态
    if (!app.globalData.isLoggedIn) {
      wx.showToast({
        title: '请先登录',
        icon: 'error'
      });
      return;
    }
 
    console.log('开始调用 /wx/mqtt/allSimple 接口获取设备信息');
    
    get({url: '/wx/mqtt/allSimple'})
      .then(response => {
        console.log('设备信息接口返回数据:', response);
        
        if (response.success && response.code === '0001') {
          const content = response.content;
          
          // 处理气象站数据
          if (content.weathers && content.weathers.length > 0) {
            const weatherStations = content.weathers.map(item => ({
              id: item.id,
              name: item.name,
              no: item.no,
              online: true, // 默认在线
              location: '甘肃省民勤县', // 默认位置
              lastUpdate: new Date().toLocaleString()
            }));
            
            this.setData({
              weatherStationList: weatherStations
            });
            
            // 默认选择第一个气象站
            if (weatherStations.length > 0) {
              this.selectWeatherStation(0);
            }
          }
          
          // 处理土壤墒情站数据
          if (content.soils && content.soils.length > 0) {
            const soilStations = content.soils.map(item => ({
              id: item.id,
              name: item.name,
              no: item.no,
              online: true, // 默认在线
              location: '甘肃省民勤县', // 默认位置
              lastUpdate: new Date().toLocaleString()
            }));
            
            this.setData({
              soilStationList: soilStations
            });
            
            // 默认选择第一个土壤墒情站
            if (soilStations.length > 0) {
              this.selectSoilStation(0);
            }
          }
          
          // 处理水肥机数据
          if (content.manures && content.manures.length > 0) {
            const fertilizerStations = content.manures.map(item => ({
              id: item.id,
              name: item.name,
              no: item.no,
              online: true // 默认在线
            }));
            
            this.setData({
              fertilizerStationList: fertilizerStations
            });
            
            // 默认选择第一个水肥机
            if (fertilizerStations.length > 0) {
              this.selectFertilizerStation(0);
            }
          }
          
          console.log('设备信息处理完成:', {
            weatherStations: this.data.weatherStationList,
            soilStations: this.data.soilStationList,
            fertilizerStations: this.data.fertilizerStationList
          });
          
        } else {
          console.error('获取设备信息失败:', response.msg);
          wx.showToast({
            title: response.msg || '获取设备信息失败',
            icon: 'none'
          });
        }
      })
      .catch(error => {
        console.error('调用设备信息接口失败:', error);
        wx.showToast({
          title: '获取设备信息失败',
          icon: 'error'
        });
      });
  },
 
  /**
   * 获取摄像头列表
   */
  getCameraList() {
    const app = getApp();
 
    // 检查登录状态
    if (!app.globalData.isLoggedIn) {
      wx.showToast({
        title: '请先登录',
        icon: 'error'
      });
      return;
    }
 
    // 重置分页状态并获取第一页数据
    this.setData({
      currentPage: 1,
      totalCount: 0,
      totalPages: 0
    });
 
    // 调用真实接口获取摄像头列表
    this.getVideoListFromApi(1);
  },
 
  /**
   * 从接口获取视频列表
   */
  getVideoListFromApi(page = 1) {
    console.log(`开始调用 /wx/video/some 接口获取视频列表,页码:${page}`);
   
    this.setData({
      currentPage: page,
      isLoading: true
    });
 
    get({
      url: '/wx/video/some',
      data: {
        pageCurr: page,
        pageSize: this.data.pageSize
      }
    })
      .then(response => {
        console.log('接口返回数据:', response);
        
        if (response.success && response.code === '0001') {
          // 处理返回的摄像头数据 - 新的数据结构
          const cameraData = response.content.obj || [];
          const cameraList = cameraData.map(item => {
            // 根据devNo生成RTMP URL
            const channelNo = 1; // 默认通道号
            const rtmpUrl = `rtmp://open.ys7.com/${item.devNo}/${channelNo}/live`;
            
            console.log(`摄像头 ${item.name} 生成RTMP URL:`, rtmpUrl);
 
            return {
              id: item.id,
              name: item.name,
              onLine: true, // 默认在线,实际项目中可能需要额外的状态检查
              lastUpdate: new Date().toLocaleString(), // 当前时间作为最后更新时间
              isPlaying: false, // 视频播放状态
              hslUrl: rtmpUrl, // 使用生成的RTMP URL
              deviceSerial: item.devNo, // 使用接口返回的devNo
              isLoadingUrl: false, // URL加载状态
              urlError: false, // URL获取错误状态
              autoPlay: false, // 自动播放控制
              // 新增字段
              lng: item.lng, // 经度
              lat: item.lat, // 纬度
              accessToken: item.accessToken // 设备专用accessToken
            };
          });
 
          // 从新的数据结构中获取分页信息
          const totalCount = response.content.itemTotal || 0;
          const totalPages = response.content.pageTotal || 0;
 
          this.setData({
            cameraList: cameraList,
            totalCount: totalCount,
            totalPages: totalPages,
            isLoading: false
          });
 
          console.log('处理后的摄像头列表:', cameraList);
          
          // 由于现在直接使用RTMP URL,不需要再调用萤石云API获取播放地址
          // this.batchGetHlsUrls(cameraList);
        } else {
          console.error('获取摄像头列表失败:', response.msg);
          this.setData({
            isLoading: false
          });
          wx.showToast({
            title: response.msg || '获取摄像头列表失败',
            icon: 'none'
          });
        }
      })
      .catch(error => {
        console.error('调用接口失败:', error);
        this.setData({
          isLoading: false
        });
      });
  },
 
 
 
 
  
 
 
 
 
 
  /**
   * 获取气象站列表(兼容性方法,现在调用统一接口)
   */
  getWeatherStationList() {
    console.log('获取气象站列表(调用统一接口)');
    this.getAllDeviceInfo();
  },
 
  /**
   * 选择气象站
   */
  selectWeatherStation(index) {
    const weatherStation = this.data.weatherStationList[index];
    if (!weatherStation) return;
 
    console.log('选择气象站:', weatherStation.name);
 
    // 获取该气象站的详细数据
    this.getWeatherStationData(weatherStation.id);
 
    this.setData({
      selectedWeatherStationIndex: index
    });
  },
 
  /**
   * 获取气象站详细数据
   */
  getWeatherStationData(stationId) {
    console.log('获取气象站数据:', stationId);
 
    // 调用真实接口获取气象站详细信息
    this.getWeatherLastData(stationId);
  },
 
  /**
   * 调用 /wx/mqttLast/oneWeatherLast 接口获取气象站详细信息
   */
  getWeatherLastData(weatherId) {
    console.log('开始调用 /wx/mqttLast/oneWeatherLast 接口获取气象站详细信息');
    console.log('气象站ID:', weatherId);
 
    get({url: `/wx/mqttLast/oneWeatherLast?weatherId=${weatherId}`})
      .then(response => {
        console.log('气象站详细信息接口返回数据:', response);
        
        if (response.success && response.code === '0001') {
          const content = response.content;
          
          // 处理接口返回的气象站数据
          const weatherData = {
            id: content.id,
            weatherId: content.weatherId,
            weatherName: content.weatherName || '气象站',
            dt: content.dt,
            // 气象数据
            temperature: content.airTemperature, // 空气温度
            humidity: content.airHumidity, // 空气湿度
            uv: content.ultraviolet, // 紫外线
            light: content.lightIntensity, // 光照强度
            rainfall: content.rainfall, // 雨量
            windSpeed: content.windSpeed, // 风速
            windDirection: content.windDirectionStr, // 风向描述
            windDirectionAngle: content.windDirection, // 风向角度
            // 在线状态
            onLine: content.onLine,
            // 格式化显示数据
            lastUpdate: content.dt || new Date().toLocaleString()
          };
 
          this.setData({
            currentWeatherStation: weatherData
          });
 
          console.log('处理后的气象站数据:', weatherData);
          
        } else {
          console.error('获取气象站详细信息失败:', response.msg);
          wx.showToast({
            title: response.msg || '获取气象站详细信息失败',
            icon: 'none'
          });
          
          // 如果接口调用失败,使用模拟数据作为备选
          this.setMockWeatherData(stationId);
        }
      })
      .catch(error => {
        console.error('调用气象站详细信息接口失败:', error);
        wx.showToast({
          title: '获取气象站详细信息失败',
          icon: 'error'
        });
        
        // 如果接口调用失败,使用模拟数据作为备选
        this.setMockWeatherData(stationId);
      });
  },
 
  /**
   * 设置模拟气象站数据(作为接口调用失败的备选方案)
   */
  setMockWeatherData(stationId) {
    console.log('使用模拟气象站数据:', stationId);
    
    const mockWeatherData = {
      id: stationId,
      weatherId: stationId,
      weatherName: '气象站',
      dt: new Date().toLocaleString(),
      temperature: 0.0,
      humidity: 0.0,
      uv: 0,
      light: 0,
      rainfall: 0.00,
      windSpeed: 0.00,
      windDirection: '北',
      windDirectionAngle: 0,
      onLine: false,
      online: true,
      lastUpdate: new Date().toLocaleString()
    };
 
    this.setData({
      currentWeatherStation: mockWeatherData
    });
  },
 
 
 
  /**
   * 气象站选择改变
   */
  onWeatherStationChange(e) {
    const index = e.detail.value;
    this.selectWeatherStation(index);
  },
 
  /**
   * 刷新气象数据
   */
  refreshWeatherData() {
    if (!this.data.currentWeatherStation) {
      wx.showToast({
        title: '请先选择气象站',
        icon: 'none'
      });
      return;
    }
 
    console.log('刷新气象数据');
 
    wx.showLoading({
      title: '刷新中...'
    });
 
    // 重新调用接口获取最新数据
    this.getWeatherLastData(this.data.currentWeatherStation.weatherId || this.data.currentWeatherStation.id);
 
    wx.hideLoading();
    wx.showToast({
      title: '刷新成功',
      icon: 'success'
    });
  },
 
  /**
   * 选择土壤墒情站
   */
  selectSoilStation(index) {
    const soilStation = this.data.soilStationList[index];
    if (!soilStation) return;
 
    console.log('选择土壤墒情站:', soilStation.name);
 
    // 获取该土壤墒情站的详细数据
    this.getSoilStationData(soilStation.id);
 
    this.setData({
      selectedSoilStationIndex: index
    });
  },
 
  /**
   * 获取土壤墒情站详细数据
   */
  getSoilStationData(stationId) {
    console.log('获取土壤墒情站数据:', stationId);
 
    // 调用真实接口获取土壤墒情站详细信息
    this.getSoilLastData(stationId);
  },
 
  /**
   * 调用 /wx/mqttLast/oneSoilLast 接口获取土壤墒情站详细信息
   */
  getSoilLastData(soilId) {
    console.log('开始调用 /wx/mqttLast/oneSoilLast 接口获取土壤墒情站详细信息');
    console.log('土壤墒情站ID:', soilId);
 
    get({url: `/wx/mqttLast/oneSoilLast?soilId=${soilId}`})
      .then(response => {
        console.log('土壤墒情站详细信息接口返回数据:', response);
        
        if (response.success && response.code === '0001') {
          const content = response.content;
          
          // 处理接口返回的土壤墒情站数据
          const soilData = {
            id: content.id,
            soilId: content.soilId,
            soilName: content.soilName || '土壤墒情站',
            dt: content.dt,
            // 5层土壤湿度数据
            soilHumidity1: content.soilHumidity1,
            soilHumidity2: content.soilHumidity2,
            soilHumidity3: content.soilHumidity3,
            soilHumidity4: content.soilHumidity4,
            soilHumidity5: content.soilHumidity5,
            // 5层土壤温度数据
            soilTemperature1: content.soilTemperature1,
            soilTemperature2: content.soilTemperature2,
            soilTemperature3: content.soilTemperature3,
            soilTemperature4: content.soilTemperature4,
            soilTemperature5: content.soilTemperature5,
            // 在线状态
            onLine: content.onLine,
            // 计算在线状态
            online: content.onLine === 1,
            // 格式化显示数据
            lastUpdate: content.dt || new Date().toLocaleString()
          };
 
          this.setData({
            currentSoilStation: soilData
          });
 
          console.log('处理后的土壤墒情站数据:', soilData);
          
        } else {
          console.error('获取土壤墒情站详细信息失败:', response.msg);
          wx.showToast({
            title: response.msg || '获取土壤墒情站详细信息失败',
            icon: 'none'
          });
          
          // 如果接口调用失败,使用模拟数据作为备选
          this.setMockSoilData(stationId);
        }
      })
      .catch(error => {
        console.error('调用土壤墒情站详细信息接口失败:', error);
        wx.showToast({
          title: '获取土壤墒情站详细信息失败',
          icon: 'error'
        });
        
        // 如果接口调用失败,使用模拟数据作为备选
        this.setMockSoilData(stationId);
      });
  },
 
  /**
   * 设置模拟土壤墒情站数据(作为接口调用失败的备选方案)
   */
  setMockSoilData(stationId) {
    console.log('使用模拟土壤墒情站数据:', stationId);
    
    const mockSoilData = {
      id: stationId,
      soilId: stationId,
      soilName: '土壤墒情站',
      dt: new Date().toLocaleString(),
      // 5层土壤湿度数据
      soilHumidity1: 0.00,
      soilHumidity2: 0.00,
      soilHumidity3: 0.00,
      soilHumidity4: 0.00,
      soilHumidity5: 0.00,
      // 5层土壤温度数据
      soilTemperature1: 0.00,
      soilTemperature2: 0.00,
      soilTemperature3: 0.00,
      soilTemperature4: 0.00,
      soilTemperature5: 0.00,
      // 在线状态
      onLine: false,
      lastUpdate: new Date().toLocaleString()
    };
 
    this.setData({
      currentSoilStation: mockSoilData
    });
  },
 
  /**
   * 土壤墒情站选择改变
   */
  onSoilStationChange(e) {
    const index = e.detail.value;
    this.selectSoilStation(index);
  },
 
  /**
   * 刷新土壤墒情数据
   */
  refreshSoilData() {
    if (!this.data.currentSoilStation) {
      wx.showToast({
        title: '请先选择土壤墒情站',
        icon: 'none'
      });
      return;
    }
 
    console.log('刷新土壤墒情数据');
 
    wx.showLoading({
      title: '刷新中...'
    });
 
    // 重新调用接口获取最新数据
    this.getSoilLastData(this.data.currentSoilStation.soilId || this.data.currentSoilStation.id);
 
    wx.hideLoading();
    wx.showToast({
      title: '刷新成功',
      icon: 'success'
    });
  },
 
  /**
   * 获取水肥机列表(兼容性方法,现在调用统一接口)
   */
  getFertilizerStationList() {
    console.log('获取水肥机列表(调用统一接口)');
    this.getAllDeviceInfo();
  },
 
  /**
   * 选择水肥机
   */
  selectFertilizerStation(index) {
    const fertilizerStation = this.data.fertilizerStationList[index];
    if (!fertilizerStation) return;
 
    console.log('选择水肥机:', fertilizerStation.name);
 
    // 获取该水肥机的详细数据
    this.getFertilizerStationData(fertilizerStation.id);
 
    this.setData({
      selectedFertilizerStationIndex: index
    });
  },
 
  /**
   * 获取水肥机详细数据
   */
  getFertilizerStationData(stationId) {
    console.log('获取水肥机数据:', stationId);
 
    // 调用真实接口获取水肥机详细信息
    this.getManureLastData(stationId);
  },
 
  /**
   * 调用 /wx/mqttLast/oneManureLast 接口获取水肥机详细信息
   */
  getManureLastData(manureId) {
    console.log('开始调用 /wx/mqttLast/oneManureLast 接口获取水肥机详细信息');
    console.log('水肥机ID:', manureId);
 
    get({url: `/wx/mqttLast/oneManureLast?manureId=${manureId}`})
      .then(response => {
        console.log('水肥机详细信息接口返回数据:', response);
        
        if (response.success && response.code === '0001') {
          const content = response.content;
          
          // 处理接口返回的水肥机数据
          const fertilizerData = {
            id: content.id,
            manureId: content.manureId,
            manureName: content.manureName || '水肥机',
            dt: content.dt,
            alarm: content.alarm,
            // 搅拌运行状态
            stirRunning1: content.stirRunning1,
            // 注肥运行状态
            injectRunning: content.injectRunning,
            // 流量和时间数据
            manureFlow: content.manureFlow,
            manureTime: content.manureTime,
            stirTime: content.stirTime,
            stirDuration: content.stirDuration,
            injectDuration: content.injectDuration,
            // 在线状态
            onLine: content.onLine,
            // 计算运行状态
            mixingEnabled: content.stirRunning1 === 1,
            fertilizingEnabled: content.injectRunning === 1,
            // 格式化显示数据
            lastUpdate: content.dt || new Date().toLocaleString()
          };
 
          this.setData({
            currentFertilizerStation: fertilizerData
          });
 
          console.log('处理后的水肥机数据:', fertilizerData);
          
        } else {
          console.error('获取水肥机详细信息失败:', response.msg);
          wx.showToast({
            title: response.msg || '获取水肥机详细信息失败',
            icon: 'none'
          });
          
          // 如果接口调用失败,使用模拟数据作为备选
          this.setMockFertilizerData(stationId);
        }
      })
      .catch(error => {
        console.error('调用水肥机详细信息接口失败:', error);
        wx.showToast({
          title: '获取水肥机详细信息失败',
          icon: 'error'
        });
        
        // 如果接口调用失败,使用模拟数据作为备选
        this.setMockFertilizerData(stationId);
      });
  },
 
  /**
   * 设置模拟水肥机数据(作为接口调用失败的备选方案)
   */
  setMockFertilizerData(stationId) {
    console.log('使用模拟水肥机数据:', stationId);
    
    const mockFertilizerData = {
      id: stationId,
      manureId: stationId,
      manureName: '水肥机',
      dt: new Date().toLocaleString(),
      alarm: 0,
      stirRunning1: 0,
      injectRunning: 0,
      manureFlow: 0.00,
      manureTime: 0,
      stirTime: 0,
      stirDuration: 300,
      injectDuration: 300,
      onLine: false,
      mixingEnabled: false,
      fertilizingEnabled: false,
      lastUpdate: new Date().toLocaleString()
    };
 
    this.setData({
      currentFertilizerStation: mockFertilizerData
    });
  },
 
 
 
  /**
   * 水肥机选择改变
   */
  onFertilizerStationChange(e) {
    const index = e.detail.value;
    this.selectFertilizerStation(index);
  },
 
  /**
   * 刷新水肥机数据
   */
  refreshFertilizerData() {
    if (!this.data.currentFertilizerStation) {
      wx.showToast({
        title: '请先选择水肥机',
        icon: 'none'
      });
      return;
    }
 
    console.log('刷新水肥机数据');
 
    wx.showLoading({
      title: '刷新中...'
    });
 
    // 重新调用接口获取最新数据
    this.getManureLastData(this.data.currentFertilizerStation.manureId || this.data.currentFertilizerStation.id);
 
    wx.hideLoading();
    wx.showToast({
      title: '刷新成功',
      icon: 'success'
    });
  },
 
  /**
   * 切换搅拌开关
   */
  toggleMixing(e) {
    const enabled = e.detail.value;
    console.log('搅拌开关:', enabled ? '开启' : '关闭');
 
    if (!this.data.currentFertilizerStation) return;
 
    // 如果用户开启搅拌,调用启动接口
    if (enabled) {
      this.startStirring();
    } else {
      // 关闭搅拌时调用停止接口
      this.stopStirring();
    }
  },
 
  /**
   * 启动搅拌
   */
  startStirring() {
    const currentStation = this.data.currentFertilizerStation;
    if (!currentStation) return;
 
    console.log('开始调用启动搅拌接口');
    
    // 显示loading状态
    wx.showLoading({
      title: '启动搅拌中...',
      mask: true
    });
 
    // 调用启动搅拌接口
    post({
      url: '/wx/mqttStir/start',
      data: {
        manureId: currentStation.manureId || currentStation.id,
        operator: getApp().globalData.operator
      },
      isShowLoding: false // 我们自己控制loading状态
    })
      .then(response => {
        console.log('启动搅拌接口返回:', response);
        
        // 隐藏loading
        wx.hideLoading();
        
        if (response.success && response.code === '0001') {
          // 接口调用成功,更新搅拌状态
          this.updateMixingStatus(true);
          
          // 显示成功提示
          wx.showToast({
            title: '搅拌启动成功',
            icon: 'success',
            duration: 2000
          });
        } else {
          // 接口调用失败,重置开关状态
          console.error('启动搅拌失败:', response.msg);
          this.resetMixingSwitch();
          wx.showToast({
            title: response.msg || '启动搅拌失败',
            icon: 'error',
            duration: 2000
          });
        }
      })
      .catch(error => {
        console.error('调用启动搅拌接口失败:', error);
        
        // 隐藏loading
        wx.hideLoading();
        
        // 接口调用失败,重置开关状态
        this.resetMixingSwitch();
        
        // 显示错误提示
        wx.showToast({
          title: '启动搅拌失败,请重试',
          icon: 'error',
          duration: 2000
        });
      });
  },
 
  /**
   * 更新搅拌状态
   */
  updateMixingStatus(enabled) {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    currentStation.mixingEnabled = enabled;
    currentStation.stirRunning1 = enabled ? 1 : 0;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('搅拌状态已更新:', enabled ? '开启' : '关闭');
  },
 
  /**
   * 重置搅拌开关状态(接口调用失败时使用)
   */
  resetMixingSwitch() {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    // 重置为关闭状态
    currentStation.mixingEnabled = false;
    currentStation.stirRunning1 = 0;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('搅拌开关状态已重置为关闭');
  },
 
  /**
   * 停止搅拌
   */
  stopStirring() {
    const currentStation = this.data.currentFertilizerStation;
    if (!currentStation) return;
 
    console.log('开始调用停止搅拌接口');
    
    // 显示loading状态
    wx.showLoading({
      title: '停止搅拌中...',
      mask: true
    });
 
    // 调用停止搅拌接口
    post({
      url: '/wx/mqttStir/stop',
      data: {
        manureId: currentStation.manureId || currentStation.id,
        operator: getApp().globalData.operator
      },
      isShowLoding: false // 我们自己控制loading状态
    })
      .then(response => {
        console.log('停止搅拌接口返回:', response);
        
        // 隐藏loading
        wx.hideLoading();
        
        if (response.success && response.code === '0001') {
          // 接口调用成功,更新搅拌状态
          this.updateMixingStatus(false);
          
          // 显示成功提示
          wx.showToast({
            title: '搅拌停止成功',
            icon: 'success',
            duration: 2000
          });
        } else {
          // 接口调用失败,保持开启状态
          console.error('停止搅拌失败:', response.msg);
          this.keepMixingSwitchOn();
          wx.showToast({
            title: response.msg || '停止搅拌失败',
            icon: 'error',
            duration: 2000
          });
        }
      })
      .catch(error => {
        console.error('调用停止搅拌接口失败:', error);
        
        // 隐藏loading
        wx.hideLoading();
        
        // 接口调用失败,保持开启状态
        this.keepMixingSwitchOn();
        
        // 显示错误提示
        wx.showToast({
          title: '停止搅拌失败,请重试',
          icon: 'error',
          duration: 2000
        });
      });
  },
 
  /**
   * 保持搅拌开关为开启状态(停止失败时使用)
   */
  keepMixingSwitchOn() {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    // 保持为开启状态
    currentStation.mixingEnabled = true;
    currentStation.stirRunning1 = 1;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('搅拌开关状态保持为开启');
  },
 
  /**
   * 切换注肥开关
   */
  toggleFertilizing(e) {
    const enabled = e.detail.value;
    console.log('注肥开关:', enabled ? '开启' : '关闭');
 
    if (!this.data.currentFertilizerStation) return;
 
    // 如果用户开启注肥,调用启动接口
    if (enabled) {
      this.startInjecting();
    } else {
      // 关闭注肥时调用停止接口
      this.stopInjecting();
    }
  },
 
  /**
   * 启动注肥
   */
  startInjecting() {
    const currentStation = this.data.currentFertilizerStation;
    if (!currentStation) return;
 
    console.log('开始调用启动注肥接口');
    
    // 显示loading状态
    wx.showLoading({
      title: '启动注肥中...',
      mask: true
    });
 
    // 调用启动注肥接口
    post({
      url: '/wx/mqttInject/start',
      data: {
        manureId: currentStation.manureId || currentStation.id,
        operator: getApp().globalData.operator
      },
      isShowLoding: false // 我们自己控制loading状态
    })
      .then(response => {
        console.log('启动注肥接口返回:', response);
        
        // 隐藏loading
        wx.hideLoading();
        
        if (response.success && response.code === '0001') {
          // 接口调用成功,更新注肥状态
          this.updateInjectingStatus(true);
          
          // 显示成功提示
          wx.showToast({
            title: '注肥启动成功',
            icon: 'success',
            duration: 2000
          });
        } else {
          // 接口调用失败,重置开关状态
          console.error('启动注肥失败:', response.msg);
          this.resetInjectingSwitch();
          wx.showToast({
            title: response.msg || '启动注肥失败',
            icon: 'error',
            duration: 2000
          });
        }
      })
      .catch(error => {
        console.error('调用启动注肥接口失败:', error);
        
        // 隐藏loading
        wx.hideLoading();
        
        // 接口调用失败,重置开关状态
        this.resetInjectingSwitch();
        
        // 显示错误提示
        wx.showToast({
          title: '启动注肥失败,请重试',
          icon: 'error',
          duration: 2000
        });
      });
  },
 
  /**
   * 更新注肥状态
   */
  updateInjectingStatus(enabled) {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    currentStation.fertilizingEnabled = enabled;
    currentStation.injectRunning = enabled ? 1 : 0;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('注肥状态已更新:', enabled ? '开启' : '关闭');
  },
 
  /**
   * 重置注肥开关状态(接口调用失败时使用)
   */
  resetInjectingSwitch() {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    // 重置为关闭状态
    currentStation.fertilizingEnabled = false;
    currentStation.injectRunning = 0;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('注肥开关状态已重置为关闭');
  },
 
  /**
   * 停止注肥
   */
  stopInjecting() {
    const currentStation = this.data.currentFertilizerStation;
    if (!currentStation) return;
 
    console.log('开始调用停止注肥接口');
    
    // 显示loading状态
    wx.showLoading({
      title: '停止注肥中...',
      mask: true
    });
 
    // 调用停止注肥接口
    post({
      url: '/wx/mqttInject/stop',
      data: {
        manureId: currentStation.manureId || currentStation.id,
        operator: getApp().globalData.operator
      },
      isShowLoding: false // 我们自己控制loading状态
    })
      .then(response => {
        console.log('停止注肥接口返回:', response);
        
        // 隐藏loading
        wx.hideLoading();
        
        if (response.success && response.code === '0001') {
          // 接口调用成功,更新注肥状态
          this.updateInjectingStatus(false);
          
          // 显示成功提示
          wx.showToast({
            title: '注肥停止成功',
            icon: 'success',
            duration: 2000
          });
        } else {
          // 接口调用失败,保持开启状态
          console.error('停止注肥失败:', response.msg);
          this.keepInjectingSwitchOn();
          wx.showToast({
            title: response.msg || '停止注肥失败',
            icon: 'error',
            duration: 2000
          });
        }
      })
      .catch(error => {
        console.error('调用停止注肥接口失败:', error);
        
        // 隐藏loading
        wx.hideLoading();
        
        // 接口调用失败,保持开启状态
        this.keepInjectingSwitchOn();
        
        // 显示错误提示
        wx.showToast({
          title: '停止注肥失败,请重试',
          icon: 'error',
          duration: 2000
        });
      });
  },
 
  /**
   * 保持注肥开关为开启状态(停止失败时使用)
   */
  keepInjectingSwitchOn() {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    // 保持为开启状态
    currentStation.fertilizingEnabled = true;
    currentStation.injectRunning = 1;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('注肥开关状态保持为开启');
  },
 
 
  
 
 
 
  /**
   * 上一页
   */
  prevPage() {
    if (this.data.currentPage <= 1) return;
    
    const newPage = this.data.currentPage - 1;
    console.log(`切换到上一页: ${newPage}`);
    this.getVideoListFromApi(newPage);
  },
 
  /**
   * 下一页
   */
  nextPage() {
    if (this.data.currentPage >= this.data.totalPages) return;
    
    const newPage = this.data.currentPage + 1;
    console.log(`切换到下一页: ${newPage}`);
    this.getVideoListFromApi(newPage);
  },
 
  /**
   * 手动重试获取播放地址
   */
  retryGetHlsUrl(e) {
    const camera = e.currentTarget.dataset.camera;
    if (!camera) {
      console.error('重试失败:摄像头信息不完整');
      wx.showToast({
        title: '摄像头信息不完整',
        icon: 'error'
      });
      return;
    }
 
    console.log('=== 手动重试获取播放地址 ===');
    console.log(`摄像头: ${camera.name}, ID: ${camera.id}`);
    console.log('当前状态:', {
      online: camera.online,
      hslUrl: camera.hslUrl,
      isLoadingUrl: camera.isLoadingUrl,
      urlError: camera.urlError
    });
    
    // 重置错误状态并重新获取
    this.updateCameraUrlLoadingState(camera.id, false, false);
    this.getHlsUrlForCamera(camera);
  },
 
  /**
   * 更新摄像头URL加载状态
   */
  updateCameraUrlLoadingState(cameraId, isLoading, hasError) {
    console.log('=== 更新摄像头URL加载状态 ===');
    console.log('参数:', { cameraId, isLoading, hasError });
    
    const cameraList = this.data.cameraList.map(item => {
      if (item.id === cameraId) {
        const updatedItem = {
          ...item,
          isLoadingUrl: isLoading,
          urlError: hasError,
          onLine:false
        };
        console.log(`摄像头 ${cameraId} 状态更新:`, {
          name: updatedItem.name,
          isLoadingUrl: updatedItem.isLoadingUrl,
          urlError: updatedItem.urlError,
          onLine:false
        });
        return updatedItem;
      }
      return item;
    });
 
    this.setData({
      cameraList: cameraList
    });
 
    console.log('状态更新完成,当前摄像头列表:', cameraList);
  },
 
  /**
   * 为单个摄像头获取HLS播放地址
   */
  getHlsUrlForCamera(camera) {
    if (!camera || !camera.deviceSerial) {
      console.error('摄像头信息不完整:', camera);
      return;
    }
 
    console.log('=== 获取播放地址开始 ===');
    console.log(`摄像头: ${camera.name}, ID: ${camera.id}, 设备序列号: ${camera.deviceSerial}`);
    console.log('当前accessToken:', this.data.accessToken);
 
    // 更新加载状态
    this.updateCameraUrlLoadingState(camera.id, true, false);
 
    // 调用萤石云API获取播放地址
    this.getHlsUrl(this.data.accessToken, camera.deviceSerial, camera.id);
  },
 
  /**
   * ezplayer错误处理
   */
  handleError(e) {
    console.log('=== ezplayer 错误处理 ===');
    console.log('错误事件详情:', e);
    console.log('错误详情:', e.detail);
    
    // 获取摄像头信息
    const cameraId = e.currentTarget.id;
    console.log('出错的摄像头ID:', cameraId);
    
    // 查找对应的摄像头
    const camera = this.data.cameraList.find(item => `ezplayer-${item.id}` === cameraId);
    if (camera) {
      console.log('出错的摄像头信息:', camera);
      
      // 更新错误状态
      this.updateCameraUrlLoadingState(camera.id, false, true);
      
      // 显示错误提示
      // wx.showToast({
      //   title: '视频播放出错',
      //   icon: 'error',
      //   duration: 2000
      // });
    } else {
      console.error('未找到对应的摄像头:', cameraId);
    }
  },
 
  /**
   * ezplayer控制事件
   */
  onControlEvent(e) {
    console.log('=== ezplayer 控制事件 ===');
    console.log('控制事件详情:', e);
    console.log('事件类型:', e.type);
    console.log('事件数据:', e.detail);
    
    // 获取摄像头信息
    const cameraId = e.currentTarget.id;
    console.log('事件来源摄像头ID:', cameraId);
    
    // 查找对应的摄像头
    const camera = this.data.cameraList.find(item => `ezplayer-${item.id}` === cameraId);
    if (camera) {
      console.log('事件来源摄像头信息:', camera);
      
      // 根据事件类型处理
      switch (e.type) {
        case 'play':
          console.log('视频开始播放');
      
          break;
        case 'pause':
          console.log('视频暂停播放');
 
          break;
        case 'ended':
          console.log('视频播放结束');
 
          break;
        case 'error':
          console.log('视频播放错误');
          this.updateCameraUrlLoadingState(camera.id, false, true);
          break;
      default:
          console.log('未知事件类型:', e.type);
      }
    } else {
      console.error('未找到对应的摄像头:', cameraId);
    }
  },
 
 
 
 
  /**
   * 更新摄像头播放状态
   */
  updateCameraPlayState(cameraId, isPlaying) {
    console.log('=== 更新摄像头播放状态 ===');
    console.log('参数:', { cameraId, isPlaying });
    
    const cameraList = this.data.cameraList.map(item => {
      if (item.id === cameraId) {
        const updatedItem = {
          ...item,
          isPlaying: isPlaying
        };
        console.log(`摄像头 ${cameraId} 播放状态更新:`, {
          name: updatedItem.name,
          isPlaying: updatedItem.isPlaying
        });
        return updatedItem;
      }
      return item;
    });
 
    this.setData({
      cameraList: cameraList
    });
 
    console.log('播放状态更新完成');
  },
 
  /**
   * 清除故障
   */
  clearAlarm() {
    const currentStation = this.data.currentFertilizerStation;
    if (!currentStation) return;
 
    console.log('开始调用清除故障接口');
    
    // 显示loading状态
    wx.showLoading({
      title: '清除故障中...',
      mask: true
    });
 
    // 调用清除故障接口
    post({
      url: '/wx/mqttFault/clear',
      data: {
        manureId: currentStation.manureId || currentStation.id,
        operator: getApp().globalData.operator
      },
      isShowLoding: false // 我们自己控制loading状态
    })
      .then(response => {
        console.log('消除报警接口返回:', response);
        
        // 隐藏loading
        wx.hideLoading();
        
        if (response.success && response.code === '0001') {
          // 接口调用成功,更新报警状态
          this.updateAlarmStatus(0);
          
          // 显示成功提示
          wx.showToast({
            title: '故障清除成功',
            icon: 'success',
            duration: 2000
          });
        } else {
          // 接口调用失败
          console.error('清除故障失败:', response.msg);
          wx.showToast({
            title: response.msg || '清除故障失败',
            icon: 'error',
            duration: 2000
          });
        }
      })
      .catch(error => {
        console.error('调用清除故障接口失败:', error);
        
        // 隐藏loading
        wx.hideLoading();
        
        // 显示错误提示
        wx.showToast({
          title: '清除故障失败,请重试',
          icon: 'error',
          duration: 2000
        });
      });
  },
 
  /**
   * 更新报警状态
   */
  updateAlarmStatus(alarmStatus) {
    const currentStation = {
      ...this.data.currentFertilizerStation
    };
    
    currentStation.alarm = alarmStatus;
 
    this.setData({
      currentFertilizerStation: currentStation
    });
 
    console.log('报警状态已更新:', alarmStatus === 1 ? '报警' : '正常');
  },
 
 
})