Browse Source

fix:一些样式与交互修改

temp
chenpingsen 1 month ago
parent
commit
aef40e64de
  1. 2
      hx-ai-intelligent/src/view/equipmentControl/liftSystem/index.vue
  2. 1
      hx-ai-intelligent/src/view/equipmentControl/liftSystem/liftInfo.vue
  3. 10
      hx-ai-intelligent/src/view/equipmentControl/lightingManage/light.vue
  4. 5
      hx-ai-intelligent/src/view/equipmentControl/lightingManage/tabs1.vue
  5. 2
      hx-ai-intelligent/src/view/equipmentControl/ventilationSystem/components/boxModel.vue

2
hx-ai-intelligent/src/view/equipmentControl/liftSystem/index.vue

@ -152,7 +152,7 @@
// //
--unknown: #a742ff; --unknown: #a742ff;
// //
--size: 40px; --size: 36px;
width: 100%; width: 100%;
height: 100%; height: 100%;
position: relative; position: relative;

1
hx-ai-intelligent/src/view/equipmentControl/liftSystem/liftInfo.vue

@ -242,6 +242,7 @@
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
user-select: none;
} }
} }
} }

10
hx-ai-intelligent/src/view/equipmentControl/lightingManage/light.vue

@ -5,15 +5,19 @@
<div class="light-tag-tit"> <div class="light-tag-tit">
<div> <div>
<img src="/asset/image//bulbLogo/21962.png" alt="" /> <img src="/asset/image//bulbLogo/21962.png" alt="" />
<span class="tag-text">{{ blub.regionName + ' > ' + blub.deviceGroupName }}</span> <span class="tag-text">{{ blub.regionName + ' > ' + blub.deviceGroupName }}</span></div
</div> >
<button class="right-button">{{ blub.scene.label }}</button> <button class="right-button">{{ blub.scene.label }}</button>
</div> </div>
<div class="light-tag-box"> <div class="light-tag-box">
<div class="tag-box-item"> <div class="tag-box-item">
<img src="/asset/image//bulbLogo/22496.png" alt="" /> <img src="/asset/image//bulbLogo/22496.png" alt="" />
<span class="title">控制模式</span> <span class="title">控制模式</span>
<span class="result">{{ blub.mode.label }}</span> <span class="result">{{
blub.mode.label.indexOf('模式') != -1
? blub.mode.label.replace('模式', '')
: blub.mode.label
}}</span>
</div> </div>
<div class="tag-box-item"> <div class="tag-box-item">
<img src="/asset/image//bulbLogo/22496.png" alt="" /> <img src="/asset/image//bulbLogo/22496.png" alt="" />

5
hx-ai-intelligent/src/view/equipmentControl/lightingManage/tabs1.vue

@ -791,6 +791,11 @@
}) })
.then((res) => { .then((res) => {
let data = res.data; let data = res.data;
//
if (data.retcode != 0) {
//
return message.warning(data.msg);
}
// //
if (data.allSucceed) { if (data.allSucceed) {
message.success('修改完成'); message.success('修改完成');

2
hx-ai-intelligent/src/view/equipmentControl/ventilationSystem/components/boxModel.vue

@ -78,6 +78,7 @@
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.box-model { .box-model {
position: relative;
min-width: 162px; min-width: 162px;
height: 110px; height: 110px;
background: inherit; background: inherit;
@ -87,6 +88,7 @@
border-style: solid; border-style: solid;
border-color: rgba(13, 255, 255, 1); border-color: rgba(13, 255, 255, 1);
border-radius: 8px; border-radius: 8px;
z-index: 99;
.title { .title {
position: relative; position: relative;
padding-left: 9px; padding-left: 9px;

Loading…
Cancel
Save