system.wxml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!--pages/system/system.wxml-->
  2. <view class="overallsituation">
  3. <view class="switch-1">
  4. <image src="/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"><span>校准时间</span></button>
  23. </view>
  24. <view class="adjustment">
  25. <view class="adjustment-1">
  26. <image src="/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="/image/Clock.png" style="height: 66%;"></image>
  32. <text style=" left: 12.3%;">时间:</text>
  33. <text style="right: 5.8%;">{{times}}</text>
  34. </view>
  35. <view class="adjustment-1">
  36. <image src="/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="/image/Fire-Extinguisher.png"></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="/image/time.png" style="height: 66%;"></image>
  53. <text style=" left: 12.35%;">开关延时:</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%;">{{array[index]}}秒</text>
  60. </view>
  61. <view class="adjustment-1">
  62. <image src="/image/Longitude.png" style="height: 66%;"></image>
  63. <text style=" left: 12.35%;">经度:</text>
  64. <button style="width:20.58%;left: 38.23%;top:18.36%" bindtap="simulation1">{{Manualinput1}}</button>
  65. <text style="right: 5.8%;">{{longitude}}</text>
  66. <modal title="经度" hidden="{{longitudemodal}}" bindconfirm="confirm1" bindcancel="cancel1">
  67. <input placeholder="请输入经度" class="longitude-input" bindinput="GetLongitude"/>
  68. </modal>
  69. </view>
  70. <view class="adjustment-1">
  71. <image src="/image/Longitude.png" style="height: 66%;"></image>
  72. <text style=" left: 12.35%;">纬度:</text>
  73. <button style="width:20.58%;left: 38.23%;top:18.36%" bindtap="simulation2">{{Manualinput2}}</button>
  74. <modal title="纬度" hidden="{{latitudemodal}}" bindconfirm="confirm2" bindcancel="cancel2">
  75. <input placeholder="请输入纬度" class="latitude-input" bindinput="GetLatitude"/>
  76. </modal>
  77. <text style="right: 5.8%;">{{latitude}}</text>
  78. </view>
  79. </view>
  80. <view class="Refresh">
  81. <button class="Refresh-1" bindtap="RefreshPage">
  82. 刷新页面
  83. </button>
  84. <button class="Refresh-2" bindtap="Storedata">
  85. 存储数据
  86. </button>
  87. </view>
  88. </view>