Browse Source

add:给排水图像资源

temp
chenpingsen 4 weeks ago
parent
commit
1ceddd5df9
  1. 23
      hx-ai-intelligent/src/router/equipmentControl.ts
  2. 2
      hx-ai-intelligent/src/view/equipmentControl/airConditionControlSystem/tabs3.vue
  3. 27
      hx-ai-intelligent/src/view/equipmentControl/ventilationSystem/components/fanLog.vue
  4. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/meter.png
  5. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pipe.png
  6. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pond1.png
  7. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pond2.png
  8. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pump.png
  9. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type1.png
  10. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type2.png
  11. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type3.png
  12. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/valve1.png
  13. BIN
      hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/valve2.png

23
hx-ai-intelligent/src/router/equipmentControl.ts

@ -103,7 +103,7 @@ const equipmentControl = {
{ {
path: 'airConditionControlSystem', path: 'airConditionControlSystem',
name: 'airConditionControlSystem', name: 'airConditionControlSystem',
meta: { title: '空调系统群控', hideChildren: true, icon: 'shebeiqunkong' }, meta: { title: '空调系统', hideChildren: true, icon: 'shebeiqunkong' },
component: Base, component: Base,
redirect: { name: 'airConditionControlSystemIndex' }, redirect: { name: 'airConditionControlSystemIndex' },
children: [ children: [
@ -112,7 +112,26 @@ const equipmentControl = {
name: 'airConditionControlSystemIndex', name: 'airConditionControlSystemIndex',
component: () => import('/@/view/equipmentControl/airConditionControlSystem/index.vue'), component: () => import('/@/view/equipmentControl/airConditionControlSystem/index.vue'),
meta: { meta: {
title: '空调系统群控', title: '空调系统',
keepAlive: false,
// backApi: [],
},
},
],
},
{
path: 'waterSystem',
name: 'waterSystem',
meta: { title: '给排水系统', hideChildren: true, icon: 'shebeiqunkong' },
component: Base,
redirect: { name: 'waternControlSystemIndex' },
children: [
{
path: 'index',
name: 'waternControlSystemIndex',
component: () => import('/@/view/equipmentControl/waterSystem/index.vue'),
meta: {
title: '给排水系统',
keepAlive: false, keepAlive: false,
// backApi: [], // backApi: [],
}, },

2
hx-ai-intelligent/src/view/equipmentControl/airConditionControlSystem/tabs3.vue

@ -104,7 +104,7 @@
</div> </div>
</div> </div>
</div> </div>
<div style="width: 100%; height: 160px"></div> <div style="width: 100%; height: 50px"></div>
<div class="button-box"> <div class="button-box">
<button class="cancel" @click="logModalVisible = false">关闭</button> <button class="cancel" @click="logModalVisible = false">关闭</button>
</div> </div>

27
hx-ai-intelligent/src/view/equipmentControl/ventilationSystem/components/fanLog.vue

@ -62,13 +62,22 @@
}}</span></div }}</span></div
> >
</div> </div>
<div class="btn-item"> <div class="btn-item" v-if="props.type != 5">
<div class="left"> 亮度 </div> <div class="left"> 运行模式 </div>
<div class="right"> <div class="right">
<!-- 由于数字0也会被判为false故只判断undefined null --> <span>{{
<span>{{ item.brightnessBefore != null ? item.brightnessBefore : '--' }}</span> item.runModeBefore.label != null ? item.runModeBefore.label : '--'
}}</span>
<img src="/asset/image/bulbLogo/22406.png" alt="" /> <img src="/asset/image/bulbLogo/22406.png" alt="" />
<span>{{ item.brightnessAfter != null ? item.brightnessAfter : '--' }}</span> <span>{{ item.runModeAfter.label != null ? item.runModeAfter.label : '--' }}</span>
</div>
</div>
<div class="btn-item" v-if="props.type == 5">
<div class="left"> 开窗幅度 </div>
<div class="right">
<span>{{ item.openPercentBefore != null ? item.openPercentBefore : '--' }}</span>
<img src="/asset/image/bulbLogo/22406.png" alt="" />
<span>{{ item.openPercentAfter != null ? item.openPercentAfter : '--' }}</span>
</div> </div>
</div> </div>
<div class="btn-item"> <div class="btn-item">
@ -80,12 +89,14 @@
</div> </div>
</div> </div>
<div class="btn-item"> <div class="btn-item">
<div class="left"> 色温 </div> <div class="left"> 开启状态 </div>
<div class="right"> <div class="right">
<span>{{ item.colorBefore != null ? item.colorBefore : '--' }}</span> <span>{{
item.switchStatusBefore.label != null ? item.switchStatusBefore.label : '--'
}}</span>
<img src="/asset/image/bulbLogo/22406.png" alt="" /> <img src="/asset/image/bulbLogo/22406.png" alt="" />
<span> <span>
{{ item.colorAfter != null ? item.colorAfter : '--' }} {{ item.switchStatusAfter.label != null ? item.switchStatusAfter.label : '--' }}
</span> </span>
</div> </div>
</div> </div>

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/meter.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pipe.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pond1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pond2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/pump.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/type3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/valve1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
hx-ai-intelligent/src/view/equipmentControl/waterSystem/images/valve2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Loading…
Cancel
Save