Browse Source

路由新增 配电室低压柜及出线明细

yunxing 4 years ago
parent
commit
c6fad4df64

+ 1 - 1
src/components/systemMenu.vue

@@ -91,7 +91,7 @@ export default {
         flex-direction: column;
         justify-content: center;
         i {
-            margin-bottom: 10px;
+            margin-bottom: 5px;
         }
         i:before {
             font-size: 20px;

+ 18 - 7
src/router/index.ts

@@ -59,7 +59,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/equipmentList',
         name: 'EquipmentList',
-        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/EquipmentList.vue'),
+        component: () => import(/* webpackChunkName: "equipmentList" */ '../views/equipmentFacilities/EquipmentList.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,
@@ -70,7 +70,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/engineRoomPicture',
         name: 'EngineRoomPicture',
-        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/EngineRoomPicture.vue'),
+        component: () => import(/* webpackChunkName: "engineRoomPicture" */ '../views/equipmentFacilities/EngineRoomPicture.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,
@@ -81,7 +81,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/systemFloor',
         name: 'SystemFloor',
-        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/SystemFloor.vue'),
+        component: () => import(/* webpackChunkName: "systemFloor" */ '../views/equipmentFacilities/SystemFloor.vue'),
         meta: {
             keepAlive: false,
             showTabbar: true,
@@ -92,7 +92,18 @@ const routes: Array<RouteConfig> = [
     {
         path: '/electricWell',
         name: 'ElectricWell',
-        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/ElectricWell.vue'),
+        component: () => import(/* webpackChunkName: "electricWell" */ '../views/equipmentFacilities/ElectricWell.vue'),
+        meta: {
+            keepAlive: false,
+            showTabbar: false,
+            hideNarBar: true,
+        },
+    },
+    // 设备设置 --> 配电室低压柜及出线明细
+    {
+        path: '/lowVoltageCabinet',
+        name: 'LowVoltageCabinet',
+        component: () => import(/* webpackChunkName: "lowVoltageCabinet" */ '../views/equipmentFacilities/LowVoltageCabinet.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,
@@ -123,7 +134,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/comprehensiveMatterList',
         name: 'ComprehensiveMatterList',
-        component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/ComprehensiveMatterList.vue'),
+        component: () => import(/* webpackChunkName: "comprehensiveMatterList" */ '../views/otherMatter/ComprehensiveMatterList.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,
@@ -134,7 +145,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/auxiliaryRoom',
         name: 'AuxiliaryRoom',
-        component: () => import(/* webpackChunkName: "comprehensiveMatter" */ '../views/otherMatter/AuxiliaryRoom.vue'),
+        component: () => import(/* webpackChunkName: "auxiliaryRoom" */ '../views/otherMatter/AuxiliaryRoom.vue'),
         meta: {
             keepAlive: false,
             showTabbar: true,
@@ -155,7 +166,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/updateRecordDetail',
         name: 'UpdateRecordDetail',
-        component: () => import(/* webpackChunkName: "updateRecord" */ '../views/overview/UpdateRecordDetail.vue'),
+        component: () => import(/* webpackChunkName: "updateRecordDetail" */ '../views/overview/UpdateRecordDetail.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,

+ 0 - 75
src/views/equipmentFacilities/EngineRoomPicture copy.vue

@@ -1,75 +0,0 @@
-<template>
-    <div class='engine-room-picture'>
-        <van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
-            <template #right>
-                <i class='iconfont wanda-scan'></i>
-            </template>
-        </van-nav-bar>
-        <van-list class='room-list' v-model='loading' :finished='finished' finished-text='已经到底了' @load='onLoad'>
-            <van-cell v-for='item in list' :key='item' :title='item' />
-        </van-list>
-    </div>
-</template>
-<script>
-/**
- * 机房平面布置图
- */
-import Vue from 'vue'
-import { NavBar, List, Cell } from 'vant'
-Vue.use(NavBar).use(List).use(Cell)
-export default {
-    name: 'EngineRoomPicture',
-    props: {},
-    data() {
-        return {
-            title: '机房平面布置图',
-            list: [],
-            loading: false,
-            finished: false,
-        }
-    },
-    components: {},
-    beforeMount() {},
-    mounted() {},
-    methods: {
-        backPage() {
-            this.$router.go(-1)
-        },
-        handleRightClick() {
-            console.log(1111)
-        },
-        onLoad() {
-            console.log('onload')
-            // 异步更新数据
-            // setTimeout 仅做示例,真实场景中一般为 ajax 请求
-            setTimeout(() => {
-                for (let i = 0; i < 10; i++) {
-                    this.list.push(this.list.length + 1)
-                }
-
-                // 加载状态结束
-                this.loading = false
-
-                // 数据全部加载完成
-                if (this.list.length >= 40) {
-                    this.finished = true
-                }
-            }, 1000)
-        },
-    },
-}
-</script>
-<style lang='less' scoped>
-.engine-room-picture {
-    width: 100%;
-    height: 100%;
-    // 返回箭头修改
-    /deep/ .van-nav-bar .van-icon {
-        color: #000;
-    }
-    .room-list {
-        height: calc(100% - 45px);
-        overflow: auto;
-    }
-}
-</style>

+ 25 - 0
src/views/equipmentFacilities/LowVoltageCabinet.vue

@@ -0,0 +1,25 @@
+<template>
+    <div class='low-voltage-cabinet'>配电室低压柜及出线明细</div>
+</template>
+<script>
+/**
+ * 配电室低压柜及出线明细
+ */
+export default {
+    name: 'LowVoltageCabinet',
+    props: {},
+    data() {
+        return {}
+    },
+    components: {},
+    beforeMount() {},
+    mounted() {},
+    methods: {},
+}
+</script>
+<style lang='less' scoped>
+.low-voltage-cabinet {
+    width: 100%;
+    height: 100%;
+}
+</style>

+ 12 - 2
src/views/equipmentFacilities/index.vue

@@ -71,7 +71,7 @@ export default {
                     //供电
                     { text: '供电系统原理图', dataType: 'img', typecode: '2010', count: '无' },
                     { text: '机房平面布置图', dataType: 'room' },
-                    { text: '配电室低压柜及出线明细' },
+                    { text: '配电室低压柜及出线明细', dataType: 'dyg' },
                     { text: '楼层分布', dataType: 'floor', value: ' ' },
                     { text: '电井控制商铺范围', dataType: 'electricWell' },
                 ],
@@ -298,6 +298,10 @@ export default {
                 case 'electricWell':
                     this.hanldeElectricWell(item)
                     break
+                // 配电室低压柜及出线明细
+                case 'dyg':
+                    this.hanldeDyg(item)
+                    break
                 default:
                     break
             }
@@ -375,6 +379,12 @@ export default {
             this.$router.push({ name: 'EngineRoomPicture', params: {} })
         },
         /**
+         * 配电室低压柜及出线明细
+         */
+        hanldeDyg() {
+            this.$router.push({ name: 'LowVoltageCabinet', params: {} })
+        },
+        /**
          * 跳转 楼层分布
          */
         handleFloor(item) {
@@ -382,7 +392,7 @@ export default {
             this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         /**
-         *
+         * 分水器支路分布图
          */
         handleFbt(item) {
             console.log(item)