47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
<view class="page-content">
|
|
<mp-bar background="linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%)" title="设备管理" color="#ffffffd8"></mp-bar>
|
|
|
|
<view class="search-box-1">
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/train/search-blue.png" class="yellow {{isSearching?'anim':''}}" />
|
|
<view class="search-box-2">
|
|
<view class="search-box-3"></view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 开启蓝牙按钮 -->
|
|
<!-- <button bindtap="startBluetooth">开启蓝牙</button> -->
|
|
|
|
<!-- 搜索设备按钮 -->
|
|
<button bindtap="searchDevices" wx:if="{{!isSearching}}">搜索设备</button>
|
|
<view wx:else class="text">
|
|
<view class="now">正在扫描...</view>
|
|
正在搜索可用设备
|
|
</view>
|
|
|
|
<!-- 设备列表 -->
|
|
<view class="device-list">
|
|
<view class="titlee">
|
|
<view class="titlee-before"></view>检测到的设备
|
|
</view>
|
|
|
|
<block wx:for="{{devices}}" wx:key="deviceId">
|
|
<view class="device-item" bindtap="connectDevice" data-device="{{item}}">
|
|
<view class="left">
|
|
<image src="https://yuedong-wechatapplet.oss-cn-shanghai.aliyuncs.com/static/train/junm-smart.png" mode="" />{{item.name ? item.name : item.deviceId}}
|
|
</view>
|
|
<view class="right">
|
|
{{connectedDeviceId == item.deviceId ? '已连接':'连接'}}
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|
|
<!-- 连接状态 -->
|
|
<!-- <view class="status">连接状态: {{status}}</view> -->
|
|
|
|
<!-- 跳绳计数 -->
|
|
<!-- <view class="data">跳绳计数: {{skipCount}}</view> -->
|
|
|
|
<!-- 断开连接按钮 -->
|
|
<!-- <button bindtap="disconnectDevice" wx:if="{{connected}}">断开连接</button> -->
|
|
</view> |