feat(equipment): 已配对设备行按钮重构,添加设备入口仅运维可见

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-09-11 14:09:35 +08:00
co-authored by Claude Sonnet 4.6
parent b3e2a11423
commit fa0246d1e5
2 changed files with 66 additions and 34 deletions
+37 -17
View File
@@ -83,26 +83,46 @@
}
}
/* 描边按钮(蓝色/红色) */
.ops-btn {
width: 180rpx;
.section-right {
height: 48rpx;
border-radius: 8rpx;
font-size: 24rpx;
line-height: 44rpx;
text-align: center;
box-sizing: border-box;
flex-shrink: 0;
}
display: flex;
flex-wrap: nowrap;
.ops-btn--blue {
border: 2rpx solid #1385FA;
color: #1385FA;
}
.section-right-red {
height: 48rpx;
padding: 0 15rpx;
border-radius: 8rpx;
font-size: 24rpx;
line-height: 44rpx;
box-sizing: border-box;
border: 2rpx solid #F24439;
color: #F24439;
}
.ops-btn--red {
border: 2rpx solid #F24439;
color: #F24439;
.section-right-blue {
height: 48rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 0 15rpx;
border-radius: 8rpx;
background-color: #1385FA;
> view:nth-child(1) {
width: 32rpx;
height: 32rpx;
display: flex;
align-items: center;
margin-right: 6rpx;
}
> view:nth-child(2) {
color: #FFFFFF;
height: 24rpx;
font-size: 24rpx;
line-height: 24rpx;
}
}
}
}