yunxing пре 4 година
родитељ
комит
1cbf26c13c

+ 5 - 0
src/api/equipmentList.js

@@ -8,6 +8,11 @@ export function querySystemCount({ getParams }) {
 export function querySystemImage({ getParams }) {
     return httputils.getJson(`/data/sms_proimgup/query`, getParams)
 }
+// TODO: 土建立面图 路径修改
+// 查询土建系统 建筑图
+export function querySystemTuJianImage({ data, postParams }) {
+    return httputils.fetchJson(`/data/sms_proimgup/query`, data, postParams)
+}
 export function querySystemCard({ getParams }) {
     return httputils.getJson(`/data/home/querySystemCard`, getParams)
 }

+ 11 - 0
src/router/index.ts

@@ -55,6 +55,17 @@ const routes: Array<RouteConfig> = [
             showTabbar: true,
         },
     },
+    // 设备设施 --> 设备卡片跳转到的设备列表页面
+    {
+        path: '/equipmentList',
+        name: 'EquipmentList',
+        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/Equipment.vue'),
+        meta: {
+            keepAlive: false,
+            showTabbar: false,
+            hideNarBar: true,
+        },
+    },
     // 设备设置 --> 机房平面布置图
     {
         path: '/engineRoomPicture',

+ 2 - 0
src/store/index.ts

@@ -1,6 +1,8 @@
 import Vue from 'vue'
 import Vuex from 'vuex'
+// @ts-ignore
 import { queryfmapID, queryFloor } from '@/api/login.js'
+// @ts-ignore
 import { queryBrand } from '@/api/public.js'
 
 Vue.use(Vuex)

+ 123 - 0
src/views/equipmentFacilities/Equipment.vue

@@ -0,0 +1,123 @@
+
+
+<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>
+        <van-search class='equipment-search' v-model='keyWord' background='#F5F6F7' show-action placeholder='请输入搜索关键词' @search='onSearch'>
+            <template #action>
+                <div class='search' @click='onSearch'>搜索</div>
+            </template>
+        </van-search>
+        <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
+    },
+    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 })
+            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: lightblue;
+    // 返回箭头修改
+    /deep/ .van-nav-bar .van-icon {
+        color: #000;
+    }
+    // 搜索
+    .equipment-search{
+        
+    }
+    .equipment-list {
+        height: calc(100% - 45px);
+        overflow: auto;
+    }
+}
+</style>

+ 40 - 66
src/views/equipmentFacilities/index.vue

@@ -46,7 +46,7 @@ import Vue from 'vue'
 import { Cell, Toast } from 'vant'
 Vue.use(Cell).use(Toast)
 import { mapGetters, mapMutations } from 'vuex'
-import { querySystemCount, querySystemCard, querySystemImage } from '@/api/equipmentList'
+import { querySystemCount, querySystemCard, querySystemImage, querySystemTuJianImage } from '@/api/equipmentList'
 
 import MCard from '@/components/equipmentFacilities/Card'
 import SystemMenu from '@/components/systemMenu'
@@ -125,7 +125,7 @@ export default {
                     // 2028	南外立面
                     // 2027	西外立面
                     // { text: '建筑立面图', dataType: 'img', typecode: '2026', count: '无' },
-                    { text: '建筑立面图', dataType: 'img', typecode: `['2026', '2027', '2028', '2029']`, count: '无' },
+                    { text: '建筑立面图', dataType: 'img', typecode: ['2026', '2027', '2028', '2029'], count: '无' },
                     { text: '楼层分布', dataType: 'floor' },
                 ],
             },
@@ -194,64 +194,6 @@ export default {
                 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(this.listData, currentSys)
@@ -307,7 +249,6 @@ export default {
             cardList.map((item) => {
                 item.total = item.asset_num // card 第二行台数
                 item.name = item.category_name //card 第一行名称
-
                 // 设备卡片单位处理
                 if (item.name === '屋面logo') {
                     item.unit = '个'
@@ -316,7 +257,6 @@ export default {
                 } else {
                     item.unit = '台'
                 }
-
                 /**
                  * type 1: 正常运维 2:重要维保 3:重要维修
                  */
@@ -335,7 +275,6 @@ export default {
                 }
             })
             this.cardList = cardList
-            console.log(this.cardList)
         },
         handleClick(item) {
             switch (item.dataType) {
@@ -368,8 +307,11 @@ export default {
          *  显示原理图
          */
         async showImage(item) {
-            // // console.log('显示原理图')
-            // // console.log(item)
+            console.log('显示原理图')
+            console.log(item)
+            if (Array.isArray(item.typecode)) {
+                return this.getTuJianImage(item)
+            }
             let getParams = {
                 plazaId: this.plazaId,
                 module: this.module,
@@ -391,6 +333,33 @@ export default {
             imgList.length && (this.showImgPreview = true)
         },
         /**
+         * 土建立面图(typecode为数组,查询多种图)
+         */
+        // TODO: 土建立面图
+        async getTuJianImage(item) {
+            let data = {
+                    plazaId: this.plazaId,
+                    module: this.module,
+                    neTypename: '位置布置图',
+                    system: this.smsxt,
+                },
+                postParams = {
+                    typecode: item.typecode,
+                }
+            let res = await querySystemTuJianImage({ data, postParams })
+            // console.log(res)
+            if (!res && !res?.data) {
+                return false
+            }
+            let resData = res.data
+            let imgList = []
+            resData.map((item) => {
+                imgList.push(item.url)
+            })
+            this.imgList = imgList
+            imgList.length && (this.showImgPreview = true)
+        },
+        /**
          * 跳转 机房平面布置图
          */
         handleRoom(item) {
@@ -405,8 +374,13 @@ export default {
             // TODO: 楼层分布
             // this.$router.push({ name: 'SystemFloor', params: { title } })
         },
+        /**
+         * 点击卡片,跳转设备列表页面
+         */
         goToEquipment(data) {
-            // console.log(data)
+            console.log(data)
+            let { name, category_code } = data
+            this.$router.push({ name: 'EquipmentList', params: { title: name, category_code } })
         },
     },
 }