yunxing 4 years ago
parent
commit
8c48f9149f
3 changed files with 153 additions and 30 deletions
  1. 5 1
      src/api/equipmentList.js
  2. 1 1
      src/router/index.ts
  3. 147 28
      src/views/equipmentFacilities/index.vue

+ 5 - 1
src/api/equipmentList.js

@@ -1,5 +1,9 @@
 import httputils from '@/api/httputils'
 
+// 设备设施-根据图片类型统计图片数量
+export function querySystemCount({ getParams }) {
+    return httputils.getJson(`//data/sms_proimgup/querySystemCount`, getParams)
+}
 // 设备设施-主要设备清单
 export function queryEquipmentList({ data, postParams }) {
     return httputils.fetchJson(`/data/sms_asset/queryStatistics`, data, postParams)
@@ -8,4 +12,4 @@ export function queryEquipmentList({ data, postParams }) {
 // 设备设施-楼层电井口(间)控制商铺范围清单
 export function queryShops({ getParams }) {
     return httputils.getJson(`/data/sms_shops/query`, getParams)
-}
+}

+ 1 - 1
src/router/index.ts

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

+ 147 - 28
src/views/equipmentFacilities/index.vue

@@ -2,8 +2,8 @@
     <div class='equipment-facilities'>
         <!-- 左侧菜单 -->
         <SystemMenu class='left' @chooseSystem='changeSystem' />
-        <div class='right' v-show='true'>
-            <div class='top'>
+        <div class='right' v-show='showRight'>
+            <div class='top' :key='listKey'>
                 <!-- <van-cell :title='`消防电系统原理示意图`' :border='false' is-link :value='`19条`' @click='handleClick' />
                 <van-cell :title='`消防喷淋系统示意图`' :border='false' is-link value='无' @click='handleClick' />
                 <van-cell :title='`消防窗喷系统示意图`' :border='false' is-link value='无' @click='handleClick' />
@@ -11,12 +11,12 @@
                 <van-cell :title='`消防泵房引出管路分布图`' :border='false' is-link value='无' @click='handleClick' />
                 <van-cell :title='`楼层分布+其他数据`' :border='false' is-link value='无' @click='handleClick' />-->
                 <van-cell
-                    v-for='(item,index ) in listData[smsxt]'
+                    v-for='(item,index ) in listData[currentSmsxt]'
                     :key='index'
                     :title='item.text'
                     :border='false'
                     is-link
-                    :value='`${item.value||"0张"}`'
+                    :value='`${item.count||""}`'
                     @click='handleClick(item)'
                 />
             </div>
@@ -40,17 +40,22 @@
 </template>
 <script>
 import Vue from 'vue'
-import { Cell } from 'vant'
-Vue.use(Cell)
+import { Cell, Toast } from 'vant'
+Vue.use(Cell).use(Toast)
 import SystemMenu from '@/components/systemMenu'
 import MCard from '@/components/equipmentFacilities/Card'
+import { mapGetters,mapMutations } from 'vuex'
+import { querySystemCount } from '@/api/equipmentList'
 export default {
     name: 'EquipmentFacilities',
     props: {},
     components: { SystemMenu, MCard },
+    computed: {
+        ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
+    },
     data() {
         return {
-            smsxt: '1001', //系统值,默认供电系统
+            currentSmsxt: '1001', //系统值,默认供电系统
             systemText: '供电系统',
             module: '1002', // 广场管理说明书图片上传视图查询条件  1001 项目概况 1004其他事项 1003楼层分布 1002 设备设施
             neTypename: '位置布置图',
@@ -58,7 +63,7 @@ export default {
                 //上部列表数据
                 1001: [
                     //供电
-                    { text: '供电系统原理图', dataType: 'img', typecode: '2010' },
+                    { text: '供电系统原理图', dataType: 'img', typecode: '2010', count: '无' },
                     { text: '机房平面布置图', dataType: 'room' },
                     { text: '配电室低压柜及出现明细' },
                     { text: '楼层分布', dataType: 'floor', value: ' ' },
@@ -66,68 +71,182 @@ export default {
                 ],
                 1002: [
                     //暖通
-                    { text: '空调系统原理图', type: 'img', typecode: '2011' },
-                    { text: '分水器之路分布图', type: 'floor', typecode: '2013' },
+                    { text: '空调系统原理图', dataType: 'img', typecode: '2011', count: '无' },
+                    { text: '分水器支路分布图', dataType: 'floor' },
                     { text: '机房平面布置图' },
                     { text: '楼层分布' },
                 ],
                 1003: [
                     //消防
-                    { text: '消防电系统原理示意图', type: 'img', typecode: '2014' },
-                    { text: '消防喷淋系统示意图', type: 'img', typecode: '2015' },
-                    { text: '消防窗喷系统示意图', type: 'img', typecode: '2016' },
-                    { text: '消火栓系统示意图', type: 'img', typecode: '2017' },
-                    { text: '消防泵房引出管理分布图', type: 'floor' },
+                    { text: '消防电系统原理示意图', dataType: 'img', typecode: '2014', count: '无' },
+                    { text: '消防喷淋系统示意图', dataType: 'img', typecode: '2015', count: '无' },
+                    { text: '消防窗喷系统示意图', dataType: 'img', typecode: '2016', count: '无' },
+                    { text: '消火栓系统示意图', dataType: 'img', typecode: '2017', count: '无' },
+                    { text: '消防泵房引出管理分布图', dataType: 'floor' },
                     { text: '机房平面布置图' },
                     { text: '楼层分布+附加数据' },
                 ],
                 1004: [
                     //弱电
-                    { text: '门禁管理系统原理图', type: 'img', typecode: '2019' },
-                    { text: 'BA楼宇智能化系统原理图', type: 'img', typecode: '2020' },
+                    { text: '门禁管理系统原理图', dataType: 'img', typecode: '2019', count: '无' },
+                    { text: 'BA楼宇智能化系统原理图', dataType: 'img', typecode: '2020', count: '无' },
                     { text: '机房平面布置图' },
                     { text: '楼层分布' },
                 ],
                 1005: [
                     //给排水
-                    { text: '给水系统原理示意图', type: 'img', typecode: '2021' },
-                    { text: '排水系统原理示意图', type: 'img', typecode: '2022' },
+                    { text: '给水系统原理示意图', dataType: 'img', typecode: '2021', count: '无' },
+                    { text: '排水系统原理示意图', dataType: 'img', typecode: '2022', count: '无' },
                     { text: '机房平面布置图' },
                     { text: '楼层分布' },
                 ],
                 1006: [
                     //电梯
-                    { text: '扶梯原理图', type: 'img', typecode: '2023' },
-                    { text: '直梯原理图', type: 'img', typecode: '2024' },
+                    { text: '扶梯原理图', dataType: 'img', typecode: '2023', count: '无' },
+                    { text: '直梯原理图', dataType: 'img', typecode: '2024', count: '无' },
                     { text: '楼层分布' },
                 ],
                 1007: [
                     // 燃气
-                    { text: '燃气系统原理示意图', type: 'img', typecode: '2025' },
+                    { text: '燃气系统原理示意图', dataType: 'img', typecode: '2025', count: '无' },
                     { text: '楼层分布' },
                 ],
                 1008: [
                     // 土建
-                    { text: '建筑立面图', type: 'img', typecode: '2025' },
+                    { text: '建筑立面图', dataType: 'img', typecode: '2026', count: '无' },
                     { text: '楼层分布' },
                 ],
             },
+            listKey: `list_${new Date().getTime()}`,
+            showRight: false,
         }
     },
-    created() {},
+    async created() {
+        // let initSys = {
+        //     text: '供电',
+        //     categoryId: 'GDXT',
+        //     smsxt: '1001',
+        // }
+        this.systemText = '供电系统'
+        this.currentSmsxt = '1001'
+        this.SETCATEGORYID('GDXT')
+        this.SETSMSXT('1001')
+        this.showRight = false
+        await this.getPicCount()
+        this.showRight = true
+        // this.changeSystem(initSys)
+    },
     beforeMount() {},
     mounted() {},
     methods: {
+        ...mapMutations(['SETCATEGORYID', 'SETSMSXT']),
         /**
          * 左侧菜单切换事件
          * @param { String } text 系统名称
          * @param { String } category 系统拼音简称  NTXT ...
-         * @param { String }  smsxt 系统id? 1001 - 1008
+         * @param { String }  currentSmsxt 系统id? 1001 - 1008
          */
-        changeSystem({ text, categoryId, smsxt }) {
-            console.log(text, categoryId, smsxt)
-            this.smsxt = smsxt
+        async changeSystem({ text, categoryId, smsxt }) {
+            this.showRight = false
+            this.currentSmsxt = smsxt
             this.systemText = text + '系统'
+            /**
+             * 查询图片数量
+             */
+            await this.getPicCount()
+            this.showRight = true
+        },
+        async getPicCount() {
+            let getParams = {
+                plazaId: this.plazaId,
+                system: this.currentSmsxt,
+            }
+            let res
+            Toast.loading({
+                message: '加载中...',
+                forbidClick: true,
+            })
+            try {
+                res = await querySystemCount({ getParams })
+            } catch (error) {}
+            // TODO: 123123
+            /*  if (!res?.data) {
+                return false
+            } */
+            // let data =   res.data
+            let data = [
+                {
+                    typecode: 2010,
+                    cnt: 1,
+                },
+                {
+                    typecode: 2011,
+                    cnt: 2,
+                },
+                {
+                    typecode: 2013,
+                    cnt: 3,
+                },
+                {
+                    typecode: 2014,
+                    cnt: 4,
+                },
+                {
+                    typecode: 2015,
+                    cnt: 5,
+                },
+                {
+                    typecode: 2016,
+                    cnt: 6,
+                },
+                {
+                    typecode: 2017,
+                    cnt: 7,
+                },
+                {
+                    typecode: 2019,
+                    cnt: 8,
+                },
+                {
+                    typecode: 2020,
+                    cnt: 9,
+                },
+                {
+                    typecode: 2021,
+                    cnt: 10,
+                },
+                {
+                    typecode: 2022,
+                    cnt: 11,
+                },
+                {
+                    typecode: 2023,
+                    cnt: 12,
+                },
+                {
+                    typecode: 2024,
+                    cnt: 13,
+                },
+                {
+                    typecode: 2025,
+                    cnt: 14,
+                },
+            ]
+
+            let currentSys = this.listData[this.currentSmsxt]
+            console.log(currentSys)
+            currentSys.map((item) => {
+                if (item.dataType === 'img') {
+                    let detail = data.filter((v) => v.typecode == item.typecode)[0]
+                    console.log(detail)
+                    item.count = detail?.cnt + '张' || '无'
+                }
+            })
+            console.log(currentSys)
+            this.listKey = `list_${new Date().getTime()}`
+            this.$set(this.listData, this.currentSmsxt, currentSys)
+            Toast.clear()
+            console.log(this.listData)
         },
         handleClick(item) {
             switch (item.dataType) {