feat: 添加蓝牙调试页面的初始实现

- 新增 BLVRQPage.json 配置文件,设置导航栏样式。
- 新增 BLVRQPage.wxml 文件,构建蓝牙设备信息展示和操作界面。
- 新增 BLVRQPage.wxss 文件,定义页面样式和布局。
This commit is contained in:
2026-03-20 18:18:49 +08:00
parent 5010b1bdbb
commit f94cf21e7a
13 changed files with 3127 additions and 155 deletions

View File

@@ -7,25 +7,13 @@
<!-- 内容栏顶部 -->
<view class="content-header">
<!-- 左侧导航栏 -->
<view class="nav-tabs">
<view
class="nav-tab {{activeTab === 'host' ? 'active' : ''}}"
data-tab="host"
bindtap="switchTab"
>
主机
<picker class="device-type-picker" mode="selector" range="{{deviceTypeLabels}}" value="{{deviceTypeIndex}}" bindchange="onDeviceTypeChange">
<view class="device-type-display {{deviceTypeIndex === 0 ? 'placeholder' : ''}}">
<text class="device-type-text">{{deviceTypeLabels[deviceTypeIndex]}}</text>
<text class="device-type-arrow">▼</text>
</view>
<view
class="nav-tab {{activeTab === 'W13' ? 'active' : ''}}"
data-tab="W13"
bindtap="switchTab"
>
W13
</view>
</view>
<!-- 右侧搜索按钮 -->
</picker>
<view class="search-btn" bindtap="searchBluetooth">
搜索蓝牙
</view>