|
@@ -6,7 +6,7 @@
|
|
|
<p class="title-style">快捷入口</p>
|
|
|
<div class="quick-entry-list">
|
|
|
<p @click="handleClickEngineRoomPicture" class="quick-entry-item">机房平面布置图</p>
|
|
|
- <p class="quick-entry-item">配电室低压出线柜及出线明细</p>
|
|
|
+ <p @click="handleClickLowVoltageCabinet" class="quick-entry-item">配电室低压出线柜及出线明细</p>
|
|
|
<p @click="handleClickElectricWell" class="quick-entry-item">电井(间)控制商铺范围</p>
|
|
|
<p class="quick-entry-item">更多设备</p>
|
|
|
</div>
|
|
@@ -63,6 +63,10 @@ export default {
|
|
|
handleClickEngineRoomPicture() {
|
|
|
this.$router.push({ name: 'EngineRoomPicture', params: {type: "all"} })
|
|
|
},
|
|
|
+ // 配电室低压出线柜及出线明细
|
|
|
+ handleClickLowVoltageCabinet() {
|
|
|
+ this.$router.push({ name: 'LowVoltageCabinet', params: {type: "all"} })
|
|
|
+ },
|
|
|
// 跳转电井间控制商铺范围
|
|
|
handleClickElectricWell() {
|
|
|
this.$router.push({ name: 'ElectricWell', params: { type: "all"} })
|