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

@@ -14,32 +14,43 @@
justify-content: space-between;
align-items: center;
margin-bottom: 16rpx;
gap: 14rpx;
}
/* 左侧导航栏 */
.nav-tabs {
.device-type-picker {
flex: 1;
min-width: 0;
}
.device-type-display {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12rpx;
min-height: 70rpx;
padding: 0 22rpx;
background: #ffffff;
border: 1rpx solid #ddd;
border-radius: 50rpx;
padding: 2rpx;
gap: 2rpx;
border: 1rpx solid #dce3ef;
border-radius: 18rpx;
box-shadow: 0 4rpx 14rpx rgba(15, 23, 42, 0.04);
color: #1f2d3d;
}
.nav-tab {
padding: 12rpx 26rpx;
border-radius: 50rpx;
.device-type-display.placeholder {
color: #8c9399;
}
.device-type-text {
font-size: 28rpx;
transition: all 0.3s ease;
color: #666666;
background-color: #ffffff;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.nav-tab.active {
background: linear-gradient(90deg, #00C6FF, #0072FF);
color: #fff;
font-weight: bold;
box-shadow: 0 2rpx 10rpx rgba(0, 114, 255, 0.3);
.device-type-arrow {
font-size: 20rpx;
color: #7b8794;
}
/* 右侧搜索按钮 */