yunxing 4 年之前
父节点
当前提交
d0cdfcf2eb

+ 4 - 3
src/api/equipmentList.js

@@ -21,9 +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 queryAssetClass({ getParams }) {
+    // return httputils.getJson(`/data/base/queryClassStructureBySmsxt`, getParams)
+    return httputils.getJson(`/data/sms_asset/queryAssetClass`, getParams)
 }
 
 // 设备设施-楼层电井口(间)控制商铺范围清单

+ 2 - 2
src/router/index.ts

@@ -94,8 +94,8 @@ const routes: Array<RouteConfig> = [
         name: 'ElectricWell',
         component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/ElectricWell.vue'),
         meta: {
-            keepAlive: true,
-            showTabbar: true,
+            keepAlive: false,
+            showTabbar: false,
             hideNarBar: true,
         },
     },

+ 143 - 117
src/views/equipmentFacilities/ElectricWell.vue

@@ -1,7 +1,7 @@
 
 
 <template>
-    <div class='equipment-page'>
+    <div class='electric-well-page'>
         <!-- 顶部条 -->
         <van-nav-bar title='电井间商铺控制范围' left-arrow @click-left='backPage' @click-right='handleRightClick'>
             <template #right>
@@ -9,34 +9,62 @@
             </template>
         </van-nav-bar>
         <!-- 搜索框 -->
-        <div class='equipment-search-container'>
-            <van-search class='equipment-search' v-model='keyword' placeholder='请输入电井间或商铺编号' @search='onSearch'>
+        <div class='search-container'>
+            <van-search class='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 class='electric-well-list' v-if='list.length'>
+            <div class='floor' v-for='(item,index) in list' :key='`${index}_${item.floor}`'>
+                <!-- 楼层 -->
+                <div class='title'>
+                    <div class='floor-left'>
+                        <i class='iconfont wanda-floor-func-active'></i>
+                        {{item.floor}}
+                    </div>
+                    <div class='floor-right'>
+                        查看平面图
+                        <van-icon name='arrow' />
+                    </div>
+                </div>
+                <!-- 电井 -->
+                <div class='well-container'>
+                    <div class='well' v-for='(detail,dIndex) in item.data.slice(0,2)' :key='`${dIndex}_${detail.floor}`'>
+                        <div class='well-title'>{{detail.welldes}}</div>
+                        <div class='meterbox'>
+                            <span class='well-left'>商铺电表箱:</span>
+                            <span class='value'>{{detail.meterbox}}</span>
+                        </div>
+                        <div class='meterbox'>
+                            <span class='well-left'>商铺编号:</span>
+                            <span class='value'>{{detail.shopsnumList}}</span>
+                        </div>
+                    </div>
+                    <!-- 加载更多 -->
+                    <div class='load-more' v-show='!detail.loadmore && item.data.length>2' @click='detail.loadMore=true'></div>
+                    <!-- 第三条以上 -->
+                    <div v-show='detail.loadMore && item.data.length>2'>
+                        <div class='well' v-for='(detail,dIndex) in item.data.slice(2)' :key='`${dIndex}_${detail.floor}`'>
+                            <div class='well-title'>{{detail.welldes}}</div>
+                            <div class='meterbox'>
+                                <span class='well-left'>商铺电表箱:</span>
+                                <span class='value'>{{detail.meterbox}}</span>
+                            </div>
+                            <div class='meterbox'>
+                                <span class='well-left'>商铺编号:</span>
+                                <span class='value'>{{detail.shopsnumList}}</span>
+                            </div>
+                        </div>
+                    </div>
+                </div>
+            </div>
         </div>
         <!-- 无数据 -->
-        <van-empty class='m-empty' v-if='finished &&!list.length' description='暂无数据'>
+        <van-empty class='m-empty' v-if='!list.length' description='暂无数据'>
             <!-- <template #image>
                 <img src="../../assets/images/xxx.png" alt="">
             </template>-->
@@ -79,7 +107,6 @@ 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 { queryShops } from '@/api/equipmentList'
 import { sleep } from '@/utils/util'
 import { cloneDeep } from 'lodash'
@@ -93,22 +120,7 @@ export default {
             size: 20,
             list: [],
             loading: false,
-            finished: false,
-            category_code: '',
             showPopup: false,
-
-            //  [
-            //     { 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: {
                 system: '',
@@ -126,11 +138,7 @@ export default {
     },
     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.getList()
     },
     beforeMount() {},
     mounted() {},
@@ -151,49 +159,41 @@ export default {
          */
         async getList() {
             console.log('getList')
-            let data = {
-                page: this.page,
-                size: this.size,
+            let getParams = {
+                orderBy: `floor,1;welldesm,1;meterbox,1;`,
                 plazaId: this.plazaId,
             }
-            let postParams = {
-                system_code: this.system_code,
-                category_code: this.category_code,
-            }
-            // TODO: keyword
-            if (this.keyword) {
-                data.keyword = `${this.keyword}:sbjc,assetnum;`
-            }
-            let resData = await queryEquipmentList({ data, postParams })
+            //  getParams.keyword = ''
+            // if (this.welldes) {
+            //     getParams.keyword += `${this.welldes}:welldes;`
+            // }
+            // if (this.shopsnum) {
+            //     getParams.keyword += `${this.shopsnum}:shopsnumList;`
+            // }
+            // if (getParams.keyword == '') {
+            //     delete getParams.keyword
+            // }
+            let resData = await queryShops({ getParams })
+            console.log(resData)
             if (!resData && !resData?.data) {
+                this.list = []
                 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
+            let res_data = resData.data[0] || []
+            console.log(res_data)
+            let list = []
+            for (const item in res_data) {
+                console.log(item)
+                list.push({
+                    floor: item,
+                    data: res_data[item],
+                })
             }
+            this.list = list
+            console.log(this.list)
+            // console.log(JSON.stringify(res_data, null, 2))
         },
+        async onLoad() {},
         /**
          * 搜索
          */
@@ -256,21 +256,23 @@ export default {
 }
 </script>
 <style lang='less' scoped>
-.equipment-page {
+.electric-well-page {
     width: 100%;
     height: 100%;
+    display: flex;
+    flex-direction: column;
     background-color: #f5f6f7;
     // 返回箭头修改
     /deep/ .van-nav-bar .van-icon {
         color: #000;
     }
     // 搜索
-    .equipment-search-container {
+    .search-container {
         width: 100%;
         height: 55px;
         // background-color: #fff;
         text-align: center;
-        .equipment-search {
+        .search {
             width: 80%;
             margin: 0 auto;
             background: none;
@@ -281,54 +283,78 @@ export default {
         }
     }
     // 设备列表
-    .equipment-list {
+    .electric-well-list {
         width: 100%;
-        padding: 0 10px;
+        flex: 1;
+        // padding: 0 10px;
         background-color: #fff;
-        min-height: 1px;
-        max-height: calc(100% - 100px);
-        overflow: auto;
+        // overflow: auto;
         font-size: 14px;
         font-weight: 400;
         color: #333333;
-        /deep/ .van-cell {
+        .floor {
+            width: 100%;
+            max-height: 400px;
             display: flex;
-            align-items: center;
-            .van-cell__title {
+            flex-direction: column;
+            // 楼层title
+            .title {
+                width: 100%;
+                height: 40px;
+                min-height: 40px;
+                max-height: 40px;
+                padding: 0 15px;
+                background: #dce5ee;
                 display: flex;
-                vertical-align: center;
-                .number {
-                    width: 35px;
-                    display: flex;
-                    align-items: center;
+                justify-content: space-between;
+                align-items: center;
+                .floor-left {
+                    color: #025baa;
+                    font-size: 16px;
                 }
-                .name {
+                .floor-right {
+                    color: #025baa;
                     display: flex;
                     align-items: center;
-                    padding: 0 10px;
+                    i {
+                        margin-left: 5px;
+                    }
+                }
+            }
+            // 电井列表
+            .well-container {
+                padding: 15px;
+                flex: 1;
+                overflow: auto;
+                .well {
+                    width: 100%;
+                    // height: 130px;
+                    padding-bottom: 10px;
+                    border-bottom: 1px solid #e6e6e6;
+                    .well-title {
+                        font-size: 16px;
+                        font-weight: 500;
+                        color: #333;
+                    }
+                    .meterbox,
+                    .shopsnumList {
+                        width: 100%;
+                        height: auto;
+                        margin-top: 8px;
+                        display: flex;
+                        color: #666;
+                        .well-left {
+                            width: 80px !important;
+                        }
+                        .value {
+                            flex: 1;
+                            height: auto;
+                            word-wrap: break-word;
+                            word-break: break-all;
+                        }
+                    }
                 }
             }
-        }
-
-        .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;
         }
     }
     // 空状态

+ 4 - 4
src/views/equipmentFacilities/EquipmentList.vue

@@ -90,7 +90,7 @@ 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 { queryEquipmentList, queryAssetClass } from '@/api/equipmentList'
 import { sleep } from '@/utils/util'
 import { cloneDeep } from 'lodash'
 export default {
@@ -283,12 +283,12 @@ export default {
         async getSbss(smsxt) {
             console.log(this.smsxt, this.system_code)
             let getParams = {
-                smsxt: smsxt || this.smsxt,
+                system_code: smsxt || this.smsxt,
             }
             if (smsxt === '全部') {
-                delete getParams.smsxt
+                delete getParams.system_code
             }
-            let resData = await queryClassStructure({ getParams })
+            let resData = await queryAssetClass({ getParams })
             console.log(resData)
             if (!resData && !resData?.data) {
                 this.sbssList = [{ text: '全部', code: '全部', active: 'active' }]