12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!--pages/system/system.wxml-->
- <view class="overallsituation">
- <view class="switch-1">
- <image src="/image/network.png" style="position: absolute; left:5%;top:14%;width:8%;height:70%;"></image>
- <view class="Dropdown">
- <picker range="{{groupName}}" value="{{groupIndex}}" bindchange="changegroup">
- <view class="group">
- {{groupName[groupIndex]}}
- </view>
- </picker>
- <picker range="{{deviceName}}" value="{{deviceIndex}}" bindchange="changedevice">
- <view class="device">
- {{deviceName[deviceIndex]}}
- </view>
- </picker>
- </view>
- <text class="Onlinestatus" style="background-color: white;color: red;">{{status}}</text>
- </view>
- <view class="Calibration-time">
- <text style="left: 5.3%;">回路数量:</text>
- <text style="left: 27%;">{{loops}}路</text>
- <button style="width: 21.3%;" bindtap="Calibrationtime"><span>校准时间</span></button>
- </view>
- <view class="adjustment">
- <view class="adjustment-1">
- <image src="/image/calendar.png"></image>
- <text style=" left: 12.3%;">日期:</text>
- <text style="right: 5.8%;">{{dates}}</text>
- </view>
- <view class="adjustment-1">
- <image src="/image/Clock.png" style="height: 66%;"></image>
- <text style=" left: 12.3%;">时间:</text>
- <text style="right: 5.8%;">{{times}}</text>
- </view>
- <view class="adjustment-1">
- <image src="/image/sunrise.png"></image>
- <text style=" left: 12.3%;">光照度:</text>
- <text style="right: 5.8%;">{{Illuminance}}</text>
- </view>
- <view class="adjustment-1">
- <image src="/image/Fire-Extinguisher.png"></image>
- <text style=" left: 12.3%;">消防报警:</text>
- <text style="right: 5.8%;background-color:{{Firealarmcolor}};">{{Firealarmtext}}</text>
- </view>
- <view class="adjustment-1">
- <text style="position: absolute;left: 2.9%;">日出:</text>
- <text style="position: absolute;left: 20.5%;">{{Sunrisetime}}</text>
- <text style="position: absolute;left: 52.9%;">日落:</text>
- <text style="position: absolute;left: 70.5%;">{{Sunsettime}}</text>
- </view>
- <view class="adjustment-1">
- <image src="/image/time.png" style="height: 66%;"></image>
- <text style=" left: 12.35%;">开关延时:</text>
- <picker style="left:47%;top:18.36%;width: 14.7%;"bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
- <view class="picker">
- {{array[index]}}秒
- </view>
- </picker>
- <text style="right: 5.8%;">{{array[index]}}秒</text>
- </view>
- <view class="adjustment-1">
- <image src="/image/Longitude.png" style="height: 66%;"></image>
- <text style=" left: 12.35%;">经度:</text>
- <button style="width:20.58%;left: 38.23%;top:18.36%" bindtap="simulation1">{{Manualinput1}}</button>
- <text style="right: 5.8%;">{{longitude}}</text>
- <modal title="经度" hidden="{{longitudemodal}}" bindconfirm="confirm1" bindcancel="cancel1">
- <input placeholder="请输入经度" class="longitude-input" bindinput="GetLongitude"/>
- </modal>
- </view>
- <view class="adjustment-1">
- <image src="/image/Longitude.png" style="height: 66%;"></image>
- <text style=" left: 12.35%;">纬度:</text>
- <button style="width:20.58%;left: 38.23%;top:18.36%" bindtap="simulation2">{{Manualinput2}}</button>
- <modal title="纬度" hidden="{{latitudemodal}}" bindconfirm="confirm2" bindcancel="cancel2">
- <input placeholder="请输入纬度" class="latitude-input" bindinput="GetLatitude"/>
- </modal>
- <text style="right: 5.8%;">{{latitude}}</text>
- </view>
- </view>
- <view class="Refresh">
- <button class="Refresh-1" bindtap="RefreshPage">
- 刷新页面
- </button>
- <button class="Refresh-2" bindtap="Storedata">
- 存储数据
- </button>
- </view>
- </view>
|