9 changed files with 514 additions and 249 deletions
After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 12 MiB After Width: | Height: | Size: 11 MiB |
Before Width: | Height: | Size: 10 MiB After Width: | Height: | Size: 12 MiB |
@ -0,0 +1,92 @@ |
|||||||
|
<template> |
||||||
|
<div> |
||||||
|
<div class="device-li"> |
||||||
|
<div class="device-name">设备名称</div> |
||||||
|
<div class="device-name">运行状态</div> |
||||||
|
<div class="device-name">手动控制</div> |
||||||
|
<div class="device-name">手自动切换</div> |
||||||
|
<div class="device-name">本地远程状态</div> |
||||||
|
<div class="device-name">故障报警</div> |
||||||
|
<div class="device-name">频率调节</div> |
||||||
|
<div class="device-name">频率反馈</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default {}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped> |
||||||
|
.device-li { |
||||||
|
flex: 1; |
||||||
|
width: 100%; |
||||||
|
display: flex; |
||||||
|
flex-direction: row; |
||||||
|
align-items: center; |
||||||
|
padding: 12px 0; |
||||||
|
color: #abcdfc; |
||||||
|
border-bottom: 1px dashed #0349ac; |
||||||
|
.device-name { |
||||||
|
flex: 1; |
||||||
|
white-space: nowrap; |
||||||
|
.el-switch { |
||||||
|
width: 120px !important; |
||||||
|
} |
||||||
|
.run { |
||||||
|
display: flex; |
||||||
|
flex-direction: row; |
||||||
|
align-items: center; |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.run::before { |
||||||
|
content: ""; |
||||||
|
display: inline-block; |
||||||
|
width: 10px; |
||||||
|
height: 10px; |
||||||
|
background-color: rgb(16, 231, 16); |
||||||
|
border-radius: 50%; |
||||||
|
margin-right: 5px; |
||||||
|
} |
||||||
|
.no-run { |
||||||
|
display: flex; |
||||||
|
flex-direction: row; |
||||||
|
align-items: center; |
||||||
|
display: block; |
||||||
|
} |
||||||
|
.no-run::before { |
||||||
|
content: ""; |
||||||
|
display: inline-block; |
||||||
|
width: 10px; |
||||||
|
height: 10px; |
||||||
|
background-color: rgb(180, 180, 180); |
||||||
|
border-radius: 50%; |
||||||
|
margin-right: 5px; |
||||||
|
} |
||||||
|
.el-input { |
||||||
|
width: 100px; |
||||||
|
} |
||||||
|
.strong-electric { |
||||||
|
background-color: rgba(59, 130, 246, 0.2); |
||||||
|
color: #60a5fa; |
||||||
|
padding: 5px 20px; |
||||||
|
border-radius: 10px; |
||||||
|
} |
||||||
|
.auto-electric { |
||||||
|
background-color: rgba(231, 144, 45, 0.2); |
||||||
|
color: #e47f21; |
||||||
|
padding: 5px 20px; |
||||||
|
border-radius: 10px; |
||||||
|
} |
||||||
|
.good-status { |
||||||
|
color: #4ade80; |
||||||
|
} |
||||||
|
.bad-status { |
||||||
|
color: #f05348; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
.device-li:nth-child(1) { |
||||||
|
color: #9ca3af; |
||||||
|
} |
||||||
|
</style> |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue