| 123456789101112131415161718 |
- <view class='main-wraper'>
- <navBar title='连接设备' bindback="back" bindhome="home" bindsearch="search2" background='#fff' back="{{true}}" iconTheme='block' ></navBar>
- </view>
- <view class="container">
- <scroll-view scroll-y style="width:690rpx;height:{{list_height}}rpx">
- <block wx:for="{{devicesList}}" wx:key="deviceId">
- <view class="list-item" id="{{item.deviceId}}" bindtap="Connect">
- <view style="display:flex;flex-direction:column;width:80%">
- <text style="font-size:medium;word-break:break-all">设备名称: {{item.localName}}</text>
- <text style="font-size:x-small;color:gray;word-break:break-all">设备ID: {{item.deviceId}}</text>
- <text style="font-size:x-small;color:gray;word-break:break-all">信号强度RSSI: {{item.RSSI}}</text>
- </view>
- <image style="width:36px;height:36px" mode="aspectFit" src="/subpagesTwo/images/zmdevice/bluetooth.png"></image>
- </view>
- </block>
- </scroll-view>
- <button type="primary" class="button" loading="{{searching}}" bindtap="Search">{{searching?"搜索中...":"搜索蓝牙设备"}}</button>
- </view>
|