随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <view style="width:100vw;height:3vw"></view>
- <view bindtap='selItem' data-item='{{item}}' class="item_class flex_column flex_space" wx:for="{{deviceslist}}" wx:key="lkeys">
- <view class="flex_row flex_space flex_vcenter" >
- <view class="flex_row flex_vcenter">
- <text class="item_name_text">设备名:{{item.name || "未知设备"}}</text>
- </view>
- </view>
- <view class="flex_row flex_space flex_vcenter flex_wrap" style="margin-top:3vw;display: flex;justify-content: space-between;">
- <text class="item_name_text">设备MAC:{{item.deviceId}};信号值:{{item.RSSI || "0"}}</text>
- <text hidden="{{selmac.deviceId != item.deviceId}}" mode="aspectFit" class="item_sel_img-active" ></text>
- <text hidden="{{selmac.deviceId == item.deviceId}}" mode="aspectFit" class="item_sel_img" ></text>
- </view>
- <view class="line"></view>
- </view>
-
- <view>
- <text bindtap='refresh' class='bottom_text'>刷新</text>
- <button hidden="{{selmac.deviceId != ''}}" class="btn_disable">选择设备</button>
- <button bindtap='doback' hidden="{{selmac.deviceId == ''}}" class="btn_normal" style="margin:0">
- 选择设备</button>
- </view>
-
- <view style="width:100vw;height:20vh;">
-
- </view>
|