|
@@ -3,7 +3,7 @@
|
|
|
<div class="light-more-top">
|
|
|
<div class="left">
|
|
|
<div class="light-box">
|
|
|
- <img :src="curtainIcon" alt="" />
|
|
|
+ <img class="eq-icon" :src="curtainIcon" alt="" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
@@ -21,13 +21,13 @@
|
|
|
<div class="name">{{ item.localName }}</div>
|
|
|
<div class="control-box">
|
|
|
<div class="control" @click="handle('child', 1, '开启中', 'EquipOnSet', item.id)">
|
|
|
- <img :src="item.isActive && item.activeButton === 1 ? UpActiveIcon : UpUnActiveIcon" alt="" />
|
|
|
+ <img class="control-icon" :src="item.isActive && item.activeButton === 1 ? UpActiveIcon : UpUnActiveIcon" alt="" />
|
|
|
</div>
|
|
|
<div class="control" @click="handle('child', 3, '暂停中', 'EquipOnSet', item.id)">
|
|
|
- <img :src="item.isActive && item.activeButton === 2 ? StopActiveIcon : StopUnActiveIcon" alt="" />
|
|
|
+ <img class="control-icon" :src="item.isActive && item.activeButton === 2 ? StopActiveIcon : StopUnActiveIcon" alt="" />
|
|
|
</div>
|
|
|
<div class="control" @click="handle('child', 2, '关闭中', 'EquipOnSet', item.id)">
|
|
|
- <img :src="item.isActive && item.activeButton === 0 ? DownActiveIcon : DownUnActiveIcon" alt="" />
|
|
|
+ <img class="control-icon" :src="item.isActive && item.activeButton === 0 ? DownActiveIcon : DownUnActiveIcon" alt="" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -146,7 +146,7 @@ watch(
|
|
|
border-radius: 50%;
|
|
|
text-align: center;
|
|
|
margin-right: 27px;
|
|
|
- img {
|
|
|
+ .eq-icon {
|
|
|
width: 36px;
|
|
|
height: 36px;
|
|
|
margin: 0 auto;
|
|
@@ -229,11 +229,15 @@ watch(
|
|
|
align-items: center;
|
|
|
.control {
|
|
|
display: flex;
|
|
|
- width: 36px;
|
|
|
- height: 36px;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
margin-left: 10px;
|
|
|
+ .control-icon {
|
|
|
+ width: 28.3px;
|
|
|
+ height: 28.3px;
|
|
|
+ }
|
|
|
// img{
|
|
|
// width: 17px;
|
|
|
// height: 17px;
|