随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

51 行
1.5KB

  1. <!--pages/selble/selble.wxml-->
  2. <view class="command">
  3. <view class="device-item">
  4. <view>连接状态:</view>
  5. <view>{{devLink?'已连接':'未连接'}}</view>
  6. </view>
  7. <view class="device-item">
  8. <view>设备名:</view>
  9. <view>{{selmac.name}}</view>
  10. </view>
  11. <view class="device-item">
  12. <view>设备mac:</view>
  13. <view>{{selmac.deviceId}}</view>
  14. </view>
  15. <view class="device-item">
  16. <view>设备版本:</view>
  17. <view>{{deviceInfo.version}}</view>
  18. </view>
  19. <view class="device-item">
  20. <view>设备充电状态:</view>
  21. <view>{{deviceInfo.chargeState}}</view>
  22. </view>
  23. <view class="device-item">
  24. <view>发送内容:</view>
  25. <view>{{sendData || '暂无指令'}}</view>
  26. </view>
  27. <view class="command-result">
  28. <view>返回结果:</view>
  29. <view>{{callBack || '暂无结果'}}</view>
  30. </view>
  31. </view>
  32. <view style="width:100vw;height:3vw"></view>
  33. <view class="event-bar">
  34. <view class="btn-con">
  35. <button type="default" bindtap="connect">重新连接</button>
  36. <button type="default" bindtap="startwrite">读取工作强度</button>
  37. <button type="default" wx:for="{{sendBtnList}}" wx:key="lkeys" bindtap="sendMessage" data-command="{{item}}">{{item.name}}</button>
  38. </view>
  39. <view class="command-input">
  40. <textarea bindblur="bindTextAreaBlur" auto-height
  41. placeholder="请输入十六进制的数据格式,例如:FE0007010100FF" />
  42. <button type="primary" bindtap="onInputSend">手动输入发送</button>
  43. <button type="primary" bindtap="onClearInput" >清空输出内容</button>
  44. </view>
  45. </view>