|
@@ -5,9 +5,9 @@
|
|
<div class="quick-entry">
|
|
<div class="quick-entry">
|
|
<p class="title-style">快捷入口</p>
|
|
<p class="title-style">快捷入口</p>
|
|
<div class="quick-entry-list">
|
|
<div class="quick-entry-list">
|
|
- <p class="quick-entry-item">机房平面布置图</p>
|
|
|
|
|
|
+ <p @click="handleClickEngineRoomPicture" class="quick-entry-item">机房平面布置图</p>
|
|
<p class="quick-entry-item">配电室低压出线柜及出线明细</p>
|
|
<p class="quick-entry-item">配电室低压出线柜及出线明细</p>
|
|
- <p class="quick-entry-item">电井(间)控制商铺范围</p>
|
|
|
|
|
|
+ <p @click="handleClickElectricWell" class="quick-entry-item">电井(间)控制商铺范围</p>
|
|
<p class="quick-entry-item">更多设备</p>
|
|
<p class="quick-entry-item">更多设备</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -59,6 +59,14 @@ export default {
|
|
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ // 跳转机房平面布置图
|
|
|
|
+ handleClickEngineRoomPicture() {
|
|
|
|
+ this.$router.push({ name: 'EngineRoomPicture', params: {} })
|
|
|
|
+ },
|
|
|
|
+ // 跳转电井间控制商铺范围
|
|
|
|
+ handleClickElectricWell() {
|
|
|
|
+ this.$router.push({ name: 'ElectricWell', params: {} })
|
|
|
|
+ },
|
|
// 全局搜索事件
|
|
// 全局搜索事件
|
|
onSearch() {
|
|
onSearch() {
|
|
this.page = 1;
|
|
this.page = 1;
|