system.wxml 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!--pages/system/system.wxml-->
  2. <view class="overallsituation">
  3. <view class="switch-1">
  4. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/network.png" style="position: absolute; left:5%;top:14%;width:8%;height:70%;"></image>
  5. <view class="Dropdown">
  6. <picker range="{{groupName}}" value="{{groupIndex}}" bindchange="changegroup">
  7. <view class="group">
  8. {{groupName[groupIndex]}}
  9. </view>
  10. </picker>
  11. <picker range="{{deviceName}}" value="{{deviceIndex}}" bindchange="changedevice">
  12. <view class="device">
  13. {{deviceName[deviceIndex]}}
  14. </view>
  15. </picker>
  16. </view>
  17. <text class="Onlinestatus" style="background-color: white;color: red;">{{status}}</text>
  18. </view>
  19. <view class="Calibration-time">
  20. <text style="left: 5.3%;">回路数量:</text>
  21. <text style="left: 27%;">{{loops}}路</text>
  22. <button style="width: 21.3%;" bindtap="Calibrationtime">校准时间</button>
  23. </view>
  24. <view class="adjustment">
  25. <view class="adjustment-1">
  26. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/calendar.png"></image>
  27. <text style=" left: 12.3%;">日期:</text>
  28. <text style="right: 5.8%;">{{dates}}</text>
  29. </view>
  30. <view class="adjustment-1">
  31. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/Clock.png" style="height: calc(100vw * 30/375);width: calc(100vw * 30/375);top: 18.75%;"></image>
  32. <text style=" left: 14%;">时间:</text>
  33. <text style="right: 5.8%;">{{times}}</text>
  34. </view>
  35. <view class="adjustment-1">
  36. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/sunrise.png"></image>
  37. <text style=" left: 12.3%;">光照度:</text>
  38. <text style="right: 5.8%;">{{Illuminance}}</text>
  39. </view>
  40. <view class="adjustment-1">
  41. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/Fire-Extinguisher.png" style="width: calc(100vw * 30/375);height: calc(100vw * 40/375);"></image>
  42. <text style=" left: 12.3%;">消防报警:</text>
  43. <text style="right: 5.8%;background-color:{{Firealarmcolor}};">{{Firealarmtext}}</text>
  44. </view>
  45. <view class="adjustment-1">
  46. <text style="position: absolute;left: 2.9%;">日出:</text>
  47. <text style="position: absolute;left: 20.5%;">{{Sunrisetime}}</text>
  48. <text style="position: absolute;left: 52.9%;">日落:</text>
  49. <text style="position: absolute;left: 70.5%;">{{Sunsettime}}</text>
  50. </view>
  51. <view class="adjustment-1">
  52. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/time.png" style="height: calc(100vw * 36/375);width: calc(100vw * 36/375);top: 13%;"></image>
  53. <text style=" left: 13%;">开关延时:</text>
  54. <picker style="left:47%;top:18.36%;width: 14.7%;"bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
  55. <view class="picker">
  56. {{array[index]}}秒
  57. </view>
  58. </picker>
  59. <text style="right: 5.8%;">{{switchtime}}秒</text>
  60. </view>
  61. <view class="adjustment-1">
  62. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/Longitude.png" style="height: calc(100vw * 30/375);width: calc(100vw * 30/375);top: 18.75%;"></image>
  63. <text style=" left: 12.35%;">经度:</text>
  64. <picker mode="multiSelector" range="{{multiItems}}" bindchange="handleMulti" style="width: 20%;left: 40%;top: 20%;">
  65. <view>{{ multiItems[0][multiIndex[0]] }},{{ multiItems[1][multiIndex[1]] }}'</view>
  66. </picker>
  67. <text style="right: 5.8%;">{{longitude}}</text>
  68. </view>
  69. <view class="adjustment-1">
  70. <image src="https://cloud.long-chi.com/resource/miniprogram-lightcontrol/image/Longitude.png" style="height: calc(100vw * 30/375);width: calc(100vw * 30/375);top: 18.75%;"></image>
  71. <text style=" left: 12.35%;">纬度:</text>
  72. <picker mode="multiSelector" range="{{multiItems2}}" bindchange="handleMulti2" style="width: 20%;left: 40%;top: 20%;">
  73. <view>{{ multiItems2[0][multiIndex2[0]] }},{{ multiItems2[1][multiIndex2[1]] }}'</view>
  74. </picker>
  75. <text style="right: 5.8%;">{{latitude}}</text>
  76. </view>
  77. </view>
  78. <view class="Refresh">
  79. <button class="Refresh-1" bindtap="RefreshPage">
  80. 刷新页面
  81. </button>
  82. <button class="Refresh-2" bindtap="Storedata">
  83. 存储数据
  84. </button>
  85. </view>
  86. </view>