ibeacon.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <import src="../../../common/head.wxml" />
  2. <import src="../../../common/foot.wxml" />
  3. <view class="container page" data-weui-theme="{{theme}}">
  4. <template is="head" data="{{title: 'iBeacon'}}"/>
  5. <view class="page-body">
  6. <view class="page-section">
  7. <view class="weui-cells__title">输入iBeacon设备广播的UUID</view>
  8. <view class="weui-cells weui-cells_after-title">
  9. <view class="weui-cell weui-cell_input">
  10. <input class="weui-input" bindinput="enterUuid" />
  11. </view>
  12. </view>
  13. </view>
  14. <view class="btn-area">
  15. <button type="primary" bindtap="startSearch">搜索iBeacon</button>
  16. <button bindtap="stopSearch">停止搜索</button>
  17. </view>
  18. <view class="page-body-info">
  19. <view class="devices_summary">已发现 {{beacons.length}} 个外围设备:</view>
  20. <scroll-view class="device_list" scroll-y scroll-with-animation>
  21. <view wx:for="{{beacons}}" wx:key="index"
  22. class="device_item"
  23. hover-class="device_item_hover">
  24. <view style="font-size: 16px; color: #333;">主ID: {{item.major}} <text style="font-size: 12px;">次ID: {{item.minor}}</text></view>
  25. <view style="font-size: 10px">信号强度: {{item.rssi}}dBm</view>
  26. <view style="font-size: 10px">UUID: {{item.uuid}}</view>
  27. <view style="font-size: 10px">Proximity: {{item.proximity}} Accuracy: {{item.accuracy}}</view>
  28. </view>
  29. </scroll-view>
  30. </view>
  31. </view>
  32. <template is="foot" />
  33. </view>