yunxing hace 4 años
padre
commit
a29f5c2217

+ 4 - 0
src/api/equipmentList.js

@@ -21,6 +21,10 @@ export function querySystemCard({ getParams }) {
 export function queryEquipmentList({ data, postParams }) {
     return httputils.fetchJson(`/data/sms_asset/query`, data, postParams)
 }
+// 设备设施-主要设备清单-详情
+export function queryClassStructure({ getParams }) {
+    return httputils.getJson(`/data/base/queryClassStructureBySmsxt`, getParams)
+}
 
 // 设备设施-楼层电井口(间)控制商铺范围清单
 export function queryShops({ getParams }) {

+ 12 - 1
src/router/index.ts

@@ -59,7 +59,7 @@ const routes: Array<RouteConfig> = [
     {
         path: '/equipmentList',
         name: 'EquipmentList',
-        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/Equipment.vue'),
+        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/EquipmentList.vue'),
         meta: {
             keepAlive: false,
             showTabbar: false,
@@ -88,6 +88,17 @@ const routes: Array<RouteConfig> = [
             hideNarBar: true,
         },
     },
+    // 设备设置 --> 电井间控制商铺范围
+    {
+        path: '/electricWell',
+        name: 'ElectricWell',
+        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/ElectricWell.vue'),
+        meta: {
+            keepAlive: true,
+            showTabbar: true,
+            hideNarBar: true,
+        },
+    },
     // 其他事项
     {
         path: '/otherMatter',

+ 26 - 26
src/views/equipmentFacilities/Equipment.vue

@@ -3,14 +3,14 @@
 <template>
     <div class='equipment-page'>
         <!-- 顶部条 -->
-        <van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
+        <van-nav-bar title='电井间商铺控制范围' left-arrow @click-left='backPage' @click-right='handleRightClick'>
             <template #right>
                 <i class='iconfont wanda-scan'></i>
             </template>
         </van-nav-bar>
         <!-- 搜索框 -->
         <div class='equipment-search-container'>
-            <van-search class='equipment-search' v-model='keyword' placeholder='请输入设备简称和设备内编码' @search='onSearch'>
+            <van-search class='equipment-search' v-model='keyword' placeholder='请输入电井间或商铺编号' @search='onSearch'>
                 <!-- TODO: 空状态 自定义图标 -->
                 <!-- <template #action>
                 <div class='search' @click='onSearch'>搜索</div>
@@ -47,7 +47,7 @@
             <div class='m-popup'>
                 <!-- 系统 -->
                 <div class='system'>
-                    <h1 class='title'>专业系统</h1>
+                    <h1 class='title'>楼层</h1>
                     <div class='system-btn-container'>
                         <div class='system-btn' v-for='(item,index) in systemList' :key='index'>
                             <van-button class='m-btn' :class='item.active' @click='changeSystem(item)'>{{item.text}}</van-button>
@@ -72,24 +72,23 @@
 </template>
 <script>
 /**
- * 设备页面(正常/或者维修或维保)
- * 点击设备卡片,跳转到改页面
- *
+ * 电井间控制商铺范围
  */
 import Vue from 'vue'
 import { NavBar, Search, List, Cell, Icon, Popup, Button, Empty } from 'vant'
 Vue.use(NavBar).use(Search).use(List).use(Cell).use(Icon).use(Popup).use(Button).use(Empty)
 import { mapGetters } from 'vuex'
 
-import { queryEquipmentList } from '@/api/equipmentList'
+// import { queryEquipmentList } from '@/api/equipmentList'
+import { queryShops } from '@/api/equipmentList'
 import { sleep } from '@/utils/util'
 import { cloneDeep } from 'lodash'
 export default {
-    name: 'EngineRoomPicture',
+    name: 'ElectricWell',
     props: {},
     data() {
         return {
-            title: '',
+           
             keyword: '',
             page: 1,
             size: 20,
@@ -98,17 +97,18 @@ export default {
             finished: false,
             category_code: '',
             showPopup: false,
-            systemList: [
-                { text: '全部', smsxt: '', active: 'active' },
-                { text: '供电系统', smsxt: '1001', active: '' },
-                { text: '暖通系统', smsxt: '1002', active: '' },
-                { text: '消防系统', smsxt: '1003', active: '' },
-                { text: '弱电系统', smsxt: '1004', active: '' },
-                { text: '给排水系统', smsxt: '1005', active: '' },
-                { text: '电梯系统', smsxt: '1006', active: '' },
-                { text: '燃气系统', smsxt: '1007', active: '' },
-                { text: '土建系统', smsxt: '1008', active: '' },
-            ],
+          
+            //  [
+            //     { text: '全部', smsxt: '', active: 'active' },
+            //     { text: '供电系统', smsxt: '1001', active: '' },
+            //     { text: '暖通系统', smsxt: '1002', active: '' },
+            //     { text: '消防系统', smsxt: '1003', active: '' },
+            //     { text: '弱电系统', smsxt: '1004', active: '' },
+            //     { text: '给排水系统', smsxt: '1005', active: '' },
+            //     { text: '电梯系统', smsxt: '1006', active: '' },
+            //     { text: '燃气系统', smsxt: '1007', active: '' },
+            //     { text: '土建系统', smsxt: '1008', active: '' },
+            // ],
             system_code: '', //系统code
             // 弹窗中使用数据
             modalData: {
@@ -123,15 +123,15 @@ export default {
         }
     },
     computed: {
-        ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
+        ...mapGetters(['plazaId', 'smsxt', 'categoryId','floorsArr']),
     },
     components: {},
     created() {
-        this.system_code = this.smsxt
-        let { title, category_code } = this.$route.params
-        this.title = title
-        this.category_code = category_code
-        this.onLoad()
+        // this.system_code = this.smsxt
+        // let { title, category_code } = this.$route.params
+        // this.title = title
+        // this.category_code = category_code
+        // this.onLoad()
     },
     beforeMount() {},
     mounted() {},

+ 0 - 135
src/views/equipmentFacilities/Equipment copy.vue

@@ -1,135 +0,0 @@
-
-
-<template>
-    <div class='equipment-page'>
-        <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>
-        <div class='equipment-search-container'>
-            <van-search class='equipment-search' v-model='keyWord' placeholder='请输入搜索关键词' @search='onSearch'>
-                <!-- <template #action>
-                <div class='search' @click='onSearch'>搜索</div>
-                </template>-->
-            </van-search>
-        </div>
-        <van-list class='equipment-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, Search, List, Cell } from 'vant'
-Vue.use(NavBar).use(Search).use(List).use(Cell)
-import { mapGetters } from 'vuex'
-
-import { queryEquipmentList } from '@/api/equipmentList'
-
-export default {
-    name: 'EngineRoomPicture',
-    props: {},
-    data() {
-        return {
-            title: '',
-            keyWord: '',
-            list: [],
-            loading: false,
-            finished: false,
-            category_code: '',
-        }
-    },
-    computed: {
-        ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
-    },
-    components: {},
-    created() {
-        console.log(this.$route)
-        let { title, category_code } = this.$route.params
-        this.title = title
-        this.category_code = category_code
-        this.getList()
-    },
-    beforeMount() {},
-    mounted() {},
-    methods: {
-        backPage() {
-            this.$router.go(-1)
-        },
-        handleRightClick() {
-            console.log(1111)
-        },
-        /**
-         *
-         */
-        async getList() {
-            let data = {
-                    page: this.page,
-                    size: this.size,
-                    plazaId: this.plazaId,
-                },
-                postParams = { system_code: this.smsxt }
-            let resData = queryEquipmentList({ data, postParams })
-            console.log('==============')
-            console.log(resData)
-            if (!resData && !resData?.data) {
-                return false
-            }
-        },
-        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)
-        },
-        /**
-         * 搜索
-         */
-        onSearch() {},
-    },
-}
-</script>
-<style lang='less' scoped>
-.equipment-page {
-    width: 100%;
-    height: 100%;
-    background-color: #f5f6f7;
-    // 返回箭头修改
-    /deep/ .van-nav-bar .van-icon {
-        color: #000;
-    }
-    // 搜索
-    .equipment-search-container {
-        width: 100%;
-        height: 55px;
-        background-color: #fff;
-        text-align: center;
-        .equipment-search {
-            width: 80%;
-            margin: 0 auto;
-        }
-    }
-    .equipment-list {
-        height: calc(100% - 100px);
-        overflow: auto;
-    }
-}
-</style>

+ 511 - 0
src/views/equipmentFacilities/EquipmentList.vue

@@ -0,0 +1,511 @@
+
+
+<template>
+    <div class='equipment-page'>
+        <!-- 顶部条 -->
+        <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>
+        <!-- 搜索框 -->
+        <div class='equipment-search-container'>
+            <van-search class='equipment-search' v-model='keyword' placeholder='请输入设备简称和设备内编码' @search='onSearch'>
+                <!-- TODO: 空状态 自定义图标 -->
+                <!-- <template #action>
+                <div class='search' @click='onSearch'>搜索</div>
+                </template>-->
+            </van-search>
+        </div>
+        <!-- 设备列表 -->
+        <div class='equipment-list' v-if='list.length'>
+            <van-list v-model='loading' :finished='finished' finished-text='没有更多了' :offset='20' :immediate-check='false' @load='onLoad'>
+                <!-- <van-cell v-for='item in list' :key='item' :title='item' /> -->
+                <van-cell is-link v-for='item in list' :key='item.classstructureid'>
+                    <!-- 使用 title 插槽来自定义标题 -->
+                    <template #title>
+                        <span class='number'>{{item.classstructureid}}</span>
+                        <span class='name'>{{item.sbjc}}</span>
+                    </template>
+                    <template #right-icon>
+                        <span class='wx' v-if='item._type === "维修"'>维修</span>
+                        <span class='wb' v-else-if='item._type === "维保"'>维保</span>
+                        <van-icon name='arrow' class='arrow-icon' />
+                    </template>
+                </van-cell>
+            </van-list>
+        </div>
+        <!-- 无数据 -->
+        <van-empty class='m-empty' v-if='finished &&!list.length' description='暂无数据'>
+            <template #image>
+                <img class='no-data' src='../../assets/images/search_null.png' alt />
+            </template>
+        </van-empty>
+
+        <!-- 点击头部筛选,出现的右侧弹窗 -->
+        <van-popup class='m-popup-container' v-model='showPopup' position='right'>
+            <div class='m-popup'>
+                <!-- 系统 -->
+                <div class='system'>
+                    <h1 class='title'>专业系统</h1>
+                    <div class='system-btn-container'>
+                        <div class='system-btn' v-for='(item,index) in systemList' :key='index'>
+                            <van-button class='m-btn' :class='item.active' @click='changeSystem(item)'>{{item.text}}</van-button>
+                        </div>
+                    </div>
+                </div>
+                <div class='divider'></div>
+                <!-- 设备设施 -->
+                <div class='sbss'>
+                    <h1 class='title'>设备设施</h1>
+                    <div class='system-btn-container'>
+                        <div class='system-btn' v-for='(item,index) in sbssList' :key='index'>
+                            <van-button class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
+                        </div>
+                    </div>
+                </div>
+                <div class='footer'>
+                    <van-button size='large' color='#025BAA' plain type='info' @click='reset'>重置</van-button>
+                    <van-button size='large' color='#025BAA' type='info' @click='confirm'>确定</van-button>
+                </div>
+            </div>
+        </van-popup>
+    </div>
+</template>
+<script>
+/**
+ * 设备页面(正常/或者维修或维保)
+ * 点击设备卡片,跳转到改页面
+ *
+ */
+import Vue from 'vue'
+import { NavBar, Search, List, Cell, Icon, Popup, Button, Empty } from 'vant'
+Vue.use(NavBar).use(Search).use(List).use(Cell).use(Icon).use(Popup).use(Button).use(Empty)
+import { mapGetters } from 'vuex'
+
+import { queryEquipmentList, queryClassStructure } from '@/api/equipmentList'
+import { sleep } from '@/utils/util'
+import { cloneDeep } from 'lodash'
+export default {
+    name: 'EngineRoomPicture',
+    props: {},
+    data() {
+        return {
+            title: '',
+            keyword: '',
+            page: 1,
+            size: 20,
+            list: [],
+            loading: false,
+            finished: false,
+            category_code: '',
+            showPopup: false,
+            systemList: [
+                { text: '全部', smsxt: '', active: 'active' },
+                { text: '供电系统', smsxt: '1001', active: '' },
+                { text: '暖通系统', smsxt: '1002', active: '' },
+                { text: '消防系统', smsxt: '1003', active: '' },
+                { text: '弱电系统', smsxt: '1004', active: '' },
+                { text: '给排水系统', smsxt: '1005', active: '' },
+                { text: '电梯系统', smsxt: '1006', active: '' },
+                { text: '燃气系统', smsxt: '1007', active: '' },
+                { text: '土建系统', smsxt: '1008', active: '' },
+            ],
+            system_code: '', //系统code
+            sbss_code: '', //设备设施code
+            sbssList: [{ text: '全部', code: '', active: 'active' }], //设备设施筛选条件
+            // 弹窗中使用数据
+            modalData: {
+                system: '',
+                sbss: '',
+            },
+            // 弹窗中使用备份数据
+            modalDataBak: {
+                system: '',
+                sbss: '',
+            },
+        }
+    },
+    computed: {
+        ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
+    },
+    components: {},
+    created() {
+        this.system_code = this.smsxt
+        let { title, category_code } = this.$route.params
+        this.title = title
+        this.category_code = category_code
+        this.onLoad()
+    },
+    beforeMount() {},
+    mounted() {},
+    methods: {
+        backPage() {
+            this.$router.go(-1)
+        },
+        /**
+         * 点击右侧筛选
+         */
+        handleRightClick() {
+            this.showPopup = true
+            // 设置选中的专业系统
+            this.changeSystem({ smsxt: this.system_code })
+            // 查询筛选条件的 设备设施
+            this.getSbss()
+        },
+        /**
+         * 获取设备列表
+         */
+        async getList() {
+            console.log('getList')
+            let data = {
+                page: this.page,
+                size: this.size,
+                plazaId: this.plazaId,
+                category_code: this.category_code,
+                onlyMainAsset: true,
+            }
+            // TODO:  筛选后, 使用classstructureid字段,删除category_code字段
+            if (this.sbss_code) {
+                data.classstructureid = this.sbss_code
+                delete data.category_code
+            }
+            let postParams = { system_code: this.system_code }
+            // TODO: keyword
+            if (this.keyword) {
+                data.keyword = `${this.keyword}:sbjc,assetnum;`
+            }
+            let resData = await queryEquipmentList({ data, postParams })
+            if (!resData && !resData?.data) {
+                return false
+            }
+            let res_data = resData.data?.data || []
+            res_data.map((item) => {
+                item._type = '正常'
+                // 检测中
+                if (item.is_detecting) {
+                    item._type = '维保'
+                }
+                // 异常
+                if (item.is_exception) {
+                    item._type = '维修'
+                }
+            })
+            this.list = this.list.concat(res_data)
+            this.count = resData.data?.count
+            // console.log(JSON.stringify(res_data, null, 2))
+        },
+        async onLoad() {
+            console.log('onload')
+            // await sleep(1000)
+            await this.getList()
+            this.page++
+            this.loading = false
+            if (this.list.length >= this.count) {
+                this.finished = true
+            }
+        },
+        /**
+         * 搜索
+         */
+        onSearch() {
+            // 初始化数据,查询列表
+            this.initData()
+            this.onLoad()
+        },
+        /**
+         *  初始化数据,查询列表
+         */
+        initData() {
+            this.finished = false
+            this.page = 1
+            this.count = 0
+            this.list = []
+        },
+        /**
+         * popup 更改系统
+         */
+        changeSystem(data) {
+            console.log(data)
+            let systemList = this.systemList
+            systemList.map((item) => {
+                item.active = ''
+                if (item.smsxt === data.smsxt) {
+                    item.active = 'active'
+                }
+            })
+            // 弹窗选中的系统
+            this.$set(this.modalDataBak, 'system', data.smsxt)
+        },
+        /**
+         * popup 更改设备设施
+         */
+        changeSbss(data) {
+            let sbssList = this.sbssList
+            sbssList.map((item) => {
+                item.active = ''
+                if (item.text === data.text && item.code === data.code) {
+                    item.active = 'active'
+                }
+            })
+            // 弹窗选中的系统
+            // TODO: 111
+            console.log(data)
+            this.$set(this.modalDataBak, 'sbss', data.code)
+        },
+        /**
+         * 获取设备设施筛选条件
+         */
+        async getSbss() {
+            console.log(this.smsxt, this.system_code)
+            let getParams = {
+                smsxt: this.smsxt,
+            }
+            let resData = await queryClassStructure({ getParams })
+            console.log(resData)
+            if (!resData && !resData?.data) {
+                this.sbssList = [{ text: '全部', code: '', active: 'active' }]
+                return false
+            }
+            let res_data = resData.data || []
+            let sbssList = []
+            res_data.map((item) => {
+                item.data.map((detail) => {
+                    sbssList.push({
+                        text: detail.classqc,
+                        active: '',
+                        // code: detail.systemqm,
+                        code: detail.id,
+                    })
+                })
+            })
+            this.sbssList = [{ text: '全部', code: '', active: 'active' }, ...sbssList]
+        },
+
+        /**
+         * 重置
+         */
+        reset() {
+            this.modalDataBak = {
+                system: '',
+                sbss: '',
+            }
+            this.modalData = {
+                system: '',
+                sbss: '',
+            }
+            this.system_code = this.smsxt
+            this.showPopup = false
+        },
+        /**
+         * 弹窗确认
+         */
+        confirm() {
+            this.modalData = cloneDeep(this.modalDataBak)
+            this.showPopup = false
+            this.system_code = this.modalData.system
+            this.sbss_code = this.modalData.sbss
+            // 初始化数据,查询列表
+            this.initData()
+            this.onLoad()
+        },
+    },
+}
+</script>
+<style lang='less' scoped>
+.equipment-page {
+    width: 100%;
+    height: 100%;
+    background-color: #f5f6f7;
+    // 返回箭头修改
+    /deep/ .van-nav-bar .van-icon {
+        color: #000;
+    }
+    // 搜索
+    .equipment-search-container {
+        width: 100%;
+        height: 55px;
+        // background-color: #fff;
+        text-align: center;
+        .equipment-search {
+            width: 80%;
+            margin: 0 auto;
+            background: none;
+        }
+        .van-search__content {
+            background: #fff;
+            border-radius: 50px;
+        }
+    }
+    // 设备列表
+    .equipment-list {
+        width: 100%;
+        padding: 0 10px;
+        background-color: #fff;
+        min-height: 1px;
+        max-height: calc(100% - 100px);
+        overflow: auto;
+        font-size: 14px;
+        font-weight: 400;
+        color: #333333;
+        /deep/ .van-cell {
+            display: flex;
+            align-items: center;
+            .van-cell__title {
+                display: flex;
+                vertical-align: center;
+                .number {
+                    width: 35px;
+                    display: flex;
+                    align-items: center;
+                }
+                .name {
+                    display: flex;
+                    align-items: center;
+                    padding: 0 10px;
+                }
+            }
+        }
+
+        .arrow-icon {
+            font-size: 16px;
+            line-height: inherit !important;
+            color: #333333 !important;
+        }
+        // 维修
+        .wx,
+        .wb {
+            color: #d83931;
+            display: inline-block;
+            width: 44px;
+            margin-right: 10px;
+            background: #fbeceb;
+            border-radius: 2px;
+            text-align: center;
+        }
+        .wb {
+            color: #0481e1;
+            background: #e6f3fc;
+        }
+    }
+    // 空状态
+    .m-empty {
+        position: fixed;
+        top: 0;
+        left: 0;
+        width: 100%;
+        height: 100%;
+        display: flex;
+        align-items: center;
+        /deep/ .van-empty__image {
+            display: flex;
+            justify-content: center;
+            align-items: flex-end;
+            img {
+                width: auto;
+                height: auto;
+            }
+        }
+    }
+    // 筛选弹窗
+    .m-popup-container {
+        width: 80%;
+        height: 100%;
+        padding: 55px 20px 10px 20px;
+        .m-popup {
+            width: 100%;
+            height: calc(100% - 80px);
+            display: flex;
+            flex-direction: column;
+            .title {
+                font-size: 16px;
+                font-weight: 500;
+                color: #333333;
+                margin-bottom: 15px;
+            }
+            // 专业
+            .system {
+                width: 100%;
+                height: auto;
+                // 专业系统按钮
+                .system-btn-container {
+                    display: flex;
+                    width: 100%;
+                    flex-wrap: wrap;
+                    flex-flow: wrap;
+                    .system-btn {
+                        width: 50% !important;
+                        min-width: 50% !important;
+                        max-width: 50% !important;
+                        padding: 10px 10px 10px 0;
+                        .m-btn {
+                            width: 100%;
+                            // height: 100%;
+                            text-align: center;
+                            background: #eff0f1;
+                            border-radius: 2px;
+                        }
+                    }
+                }
+                .active {
+                    background-color: #025baa !important;
+                    color: #fff;
+                }
+            }
+            // 设备设施
+            .sbss {
+                flex: 1;
+                display: flex;
+                flex-direction: column;
+                overflow: auto;
+                .title {
+                    width: 100%;
+                    height: 25px;
+                }
+                .system-btn-container {
+                    width: 100%;
+                    flex: 1;
+                    overflow: auto;
+                    .system-btn {
+                        width: 100% !important;
+                        box-sizing: border-box;
+                        background: #eff0f1 !important;
+                        margin: 10px 0 10px 0;
+                        .m-btn {
+                            display: block !important;
+                            width: 100% !important;
+                            // height: 100%;
+                            text-align: center;
+                            background: #eff0f1;
+                            border-radius: 2px;
+                        }
+                    }
+                }
+                .active {
+                    background-color: #025baa !important;
+                    color: #fff;
+                }
+            }
+            .divider {
+                border-bottom: 1px solid #e6e6e6;
+                margin: 20px 0;
+            }
+            .footer {
+                position: absolute;
+                bottom: 30px;
+                right: 0;
+                width: 100%;
+                height: 50px;
+                display: flex;
+                justify-content: space-around;
+                .van-button {
+                    width: 40%;
+                    height: 100%;
+                    max-width: 40%;
+                    min-width: 40%;
+                }
+            }
+        }
+    }
+}
+</style>

+ 11 - 1
src/views/equipmentFacilities/index.vue

@@ -73,7 +73,7 @@ export default {
                     { text: '机房平面布置图', dataType: 'room' },
                     { text: '配电室低压柜及出现明细' },
                     { text: '楼层分布', dataType: 'floor', value: ' ' },
-                    { text: '电井控制商铺范围' },
+                    { text: '电井控制商铺范围', dataType: 'electricWell' },
                 ],
                 1002: [
                     //暖通
@@ -290,6 +290,10 @@ export default {
                 case 'floor':
                     this.handleFloor(item)
                     break
+                // 电井间商铺控制范围
+                case 'electricWell':
+                    this.hanldeElectricWell(item)
+                    break
                 default:
                     break
             }
@@ -375,6 +379,12 @@ export default {
             // this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         /**
+         * 跳转 电井间控制商铺范围
+         */
+        hanldeElectricWell(item) {
+            this.$router.push({ name: 'ElectricWell', params: {} })
+        },
+        /**
          * 点击卡片,跳转设备列表页面
          */
         goToEquipment(data) {