yunxing 4 years ago
parent
commit
b0f4eadf95
2 changed files with 61 additions and 15 deletions
  1. 6 1
      src/api/equipmentList.js
  2. 55 14
      src/views/equipmentFacilities/index.vue

+ 6 - 1
src/api/equipmentList.js

@@ -2,8 +2,13 @@ import httputils from '@/api/httputils'
 
 // 设备设施-根据图片类型统计图片数量
 export function querySystemCount({ getParams }) {
-    return httputils.getJson(`//data/sms_proimgup/querySystemCount`, getParams)
+    return httputils.getJson(`/data/sms_proimgup/querySystemCount`, getParams)
 }
+// 查询图片  (项目概况图片/设备设施原理图/位置分布图/分水器支路分布明细/示意图/库房管理图)
+export function querySystemImage({ getParams }) {
+    return httputils.getJson(`/data/sms_proimgup/query`, getParams)
+}
+
 // 设备设施-主要设备清单
 export function queryEquipmentList({ data, postParams }) {
     return httputils.fetchJson(`/data/sms_asset/queryStatistics`, data, postParams)

+ 55 - 14
src/views/equipmentFacilities/index.vue

@@ -36,20 +36,25 @@
                 />
             </div>
         </div>
+        <!-- 原理图 -->
+        <ImagePreview :key='imgKey' class='update-img-preview' :visible.sync='showImgPreview' :imgList='imgList' />
     </div>
 </template>
 <script>
 import Vue from 'vue'
 import { Cell, Toast } from 'vant'
 Vue.use(Cell).use(Toast)
-import SystemMenu from '@/components/systemMenu'
+import { mapGetters, mapMutations } from 'vuex'
+import { querySystemCount, querySystemImage } from '@/api/equipmentList'
+
 import MCard from '@/components/equipmentFacilities/Card'
-import { mapGetters,mapMutations } from 'vuex'
-import { querySystemCount } from '@/api/equipmentList'
+import SystemMenu from '@/components/systemMenu'
+import ImagePreview from '@/components/ImagePreview'
+
 export default {
     name: 'EquipmentFacilities',
     props: {},
-    components: { SystemMenu, MCard },
+    components: { SystemMenu, MCard, ImagePreview },
     computed: {
         ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
     },
@@ -118,7 +123,10 @@ export default {
                 ],
             },
             listKey: `list_${new Date().getTime()}`,
-            showRight: false,
+            showRight: false, //是否显示右侧内容
+            showImgPreview: false, //是否展示图片预览
+            imgList: [], //图片数组
+            imgKey: `img${new Date().getTime()}`,
         }
     },
     async created() {
@@ -170,11 +178,11 @@ export default {
                 res = await querySystemCount({ getParams })
             } catch (error) {}
             // TODO: 123123
-            /*  if (!res?.data) {
+            if (!res?.data) {
                 return false
-            } */
-            // let data =   res.data
-            let data = [
+            }
+            let data = res.data
+            /*  let data = [
                 {
                     typecode: 2010,
                     cnt: 1,
@@ -231,7 +239,7 @@ export default {
                     typecode: 2025,
                     cnt: 14,
                 },
-            ]
+            ] */
 
             let currentSys = this.listData[this.currentSmsxt]
             console.log(currentSys)
@@ -239,7 +247,7 @@ export default {
                 if (item.dataType === 'img') {
                     let detail = data.filter((v) => v.typecode == item.typecode)[0]
                     console.log(detail)
-                    item.count = detail?.cnt + '张' || '无'
+                    item.count = detail?.cnt ? detail?.cnt + '张' : '无' // + '张' || '无'
                 }
             })
             console.log(currentSys)
@@ -269,19 +277,52 @@ export default {
         /**
          * 显示原理图预览
          */
-        handleImg(item) {},
+        handleImg(item) {
+            if (item.count === '无') {
+                return false
+            }
+            this.showImage(item)
+        },
+        /**
+         *  显示原理图
+         */
+        async showImage(item) {
+            console.log('显示原理图')
+            console.log(item)
+            let getParams = {
+                plazaId: this.plazaId,
+                module: this.module,
+                neTypename: '位置布置图',
+                typecode: item.typecode,
+                system: this.smsxt,
+            }
+            let res = await querySystemImage({ getParams })
+            console.log(res)
+            if (!res && !res?.data) {
+                return false
+            }
+            let data = res.data
+            let imgList = []
+            data.map((item) => {
+                imgList.push(item.url)
+            })
+            this.imgList = imgList
+            imgList.length && (this.showImgPreview = true)
+        },
         /**
          * 跳转 机房平面布置图
          */
         handleRoom(item) {
-            this.$router.push({ name: 'EngineRoomPicture', params: {} })
+            // TODO: 机房平面布置图
+            // this.$router.push({ name: 'EngineRoomPicture', params: {} })
         },
         /**
          * 跳转 楼层分布
          */
         handleFloor(item) {
             let title = this.systemText + '-楼层分布'
-            this.$router.push({ name: 'SystemFloor', params: { title } })
+            // TODO: 楼层分布
+            // this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         goToEquipment(data) {
             console.log(data)