feat(equipment): 设备列表接入真实接口并调整字段映射

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-08-24 15:44:55 +08:00
co-authored by Claude Sonnet 4.6
parent 17113759b8
commit 6ffda3f3f3
3 changed files with 69 additions and 61 deletions
+16 -4
View File
@@ -163,7 +163,7 @@
display: flex;
flex-wrap: nowrap;
.device-status--connected {
.device-status_ {
height: 40rpx;
padding: 0 16rpx;
display: flex;
@@ -171,22 +171,34 @@
align-items: center;
border-radius: 20rpx;
overflow: hidden;
background-color: #EAFAF6;
background-color: #F2F3F6;
.status-dot {
width: 12rpx;
height: 12rpx;
border-radius: 50%;
background-color: #2AC79F;
background-color: #77849E;
margin-right: 8rpx;
}
.status-text {
color: #2AC79F;
color: #77849E;
height: 22rpx;
font-size: 22rpx;
line-height: 22rpx;
}
&.connected {
background-color: #EAFAF6;
&.status-dot {
background-color: #2AC79F;
}
&.status-text {
color: #2AC79F;
}
}
}
}
}