ソースを参照

Merge branch 'dev' of http://39.106.8.246:3003/yunxing/wanda-bm-guide-h5 into dev

zhangyu 4 年 前
コミット
b1b1469ccc

+ 1 - 1
.gitignore

@@ -2,7 +2,7 @@
 node_modules
 /wandaBmGuideH5
 /dist
-
+wandaBmGuideH5.zip
 
 # local env files
 .env.local

+ 6 - 1
public/index.html

@@ -4,9 +4,14 @@
         <meta charset="utf-8" />
         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
         <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no,viewport-fit=cover" />
+        <!-- 清除缓存标签 -->
+        <meta http-equiv="Expires" content="0" />
+        <meta http-equiv="Pragma" content="no-cache" />
+        <meta http-equiv="Cache-control" content="no-cache" />
+        <meta http-equiv="Cache" content="no-cache" />
         <!-- <meta name="viewport" content="target-densitydpi=device-dpi,width=750,user-scalable=0" /> -->
         <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
-        <link rel="stylesheet" href="//at.alicdn.com/t/font_2072883_7onlk4odzkb.css">
+        <link rel="stylesheet" href="//at.alicdn.com/t/font_2072883_7onlk4odzkb.css" />
         <title><%= htmlWebpackPlugin.options.title %></title>
     </head>
     <body>

+ 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)
-}
+}

+ 24 - 4
src/components/ImagePreview.vue

@@ -12,7 +12,9 @@
             @close='close'
             @change='onChange'
         ></van-image-preview>
-        <i class='direction iconfont wanda-hengshuping' @click='changeOri'></i>
+        <div class='direction' @click='changeOri'>
+            <i class='iconfont wanda-hengshuping'></i>
+        </div>
     </div>
 </template> 
 <script>
@@ -119,10 +121,19 @@ export default {
         // bottom: 50px;
         bottom: 50px;
         right: 50px;
-        // background-color: #fff;
         text-align: center;
-        color: #fff;
-        font-size: 24px;
+        width: 40px;
+        height: 40px;
+        justify-content: center;
+        align-items: center;
+        opacity: 1;
+        i {
+            width: 100%;
+            height: 100%;
+            display: inline-block;
+            color: #fff;
+            font-size: 40px;
+        }
     }
 }
 // 竖屏
@@ -133,5 +144,14 @@ export default {
 }
 // 横屏
 @media screen and (orientation: landscape) {
+    .m-image-preview .direction {
+        color: #fff !important;
+        bottom: 40px;
+        right: 40px;
+        i {
+            color: #000 !important;
+            font-size: 30px;
+        }
+    }
 }
 </style>

+ 2 - 1
src/main.ts

@@ -16,7 +16,8 @@ Vue.config.productionTip = false
 import VConsole from 'vconsole'
 // 开发环境引入 vConsole调试工具
 if (process.env.NODE_ENV === 'production' && process.env.VUE_APP_RealEnv !== 'production') {
-    new VConsole()
+    // TODO: vConsole
+    // new VConsole()
 }
 new Vue({
     router,

+ 2 - 2
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,
         },
     },
@@ -124,7 +124,7 @@ const routes: Array<RouteConfig> = [
         name: 'UpdateRecord',
         component: () => import(/* webpackChunkName: "updateRecord" */ '../views/overview/UpdateRecord.vue'),
         meta: {
-            keepAlive: false,
+            keepAlive: true,
             showTabbar: false,
             hideNarBar: true,
         },

+ 164 - 43
src/views/equipmentFacilities/index.vue

@@ -2,8 +2,8 @@
     <div class='equipment-facilities'>
         <!-- 左侧菜单 -->
         <SystemMenu class='left' @chooseSystem='changeSystem' />
-        <div class='right'>
-            <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,92 +40,213 @@
 </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: '位置布置图',
             listData: {
                 //上部列表数据
                 1001: [
                     //供电
-                    { text: '供电系统原理图', dataType: 'img', id: '' },
-                    { text: '机房平面布置图', dataType: 'room', id: '' },
-                    { text: '配电室低压柜及出现明细', id: '' },
-                    { text: '楼层分布', dataType: 'floor', id: '', value: ' ' },
-                    { text: '电井控制商铺范围', id: '' },
+                    { text: '供电系统原理图', dataType: 'img', typecode: '2010', count: '无' },
+                    { text: '机房平面布置图', dataType: 'room' },
+                    { text: '配电室低压柜及出现明细' },
+                    { text: '楼层分布', dataType: 'floor', value: ' ' },
+                    { text: '电井控制商铺范围' },
                 ],
                 1002: [
                     //暖通
-                    { text: '空调系统原理图', type: 'img', id: '' },
-                    { text: '分水器之路分布图', id: '' },
-                    { text: '机房平面布置图', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '空调系统原理图', dataType: 'img', typecode: '2011', count: '无' },
+                    { text: '分水器支路分布图', dataType: 'floor' },
+                    { text: '机房平面布置图' },
+                    { text: '楼层分布' },
                 ],
                 1003: [
                     //消防
-                    { text: '消防电系统原理示意图', id: '' },
-                    { text: '消防喷淋系统示意图', id: '' },
-                    { text: '消防窗喷系统示意图', id: '' },
-                    { text: '消火栓系统示意图', id: '' },
-                    { text: '消防泵房引出管理分布图', id: '' },
-                    { text: '机房平面布置图', id: '' },
-                    { text: '楼层分布+附加数据', id: '' },
+                    { 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: '门禁管理系统原理图', id: '' },
-                    { text: 'BA楼宇智能化系统原理图', id: '' },
-                    { text: '机房平面布置图', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '门禁管理系统原理图', dataType: 'img', typecode: '2019', count: '无' },
+                    { text: 'BA楼宇智能化系统原理图', dataType: 'img', typecode: '2020', count: '无' },
+                    { text: '机房平面布置图' },
+                    { text: '楼层分布' },
                 ],
                 1005: [
                     //给排水
-                    { text: '给水系统原理示意图', id: '' },
-                    { text: '排水系统原理示意图', id: '' },
-                    { text: '机房平面布置图', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '给水系统原理示意图', dataType: 'img', typecode: '2021', count: '无' },
+                    { text: '排水系统原理示意图', dataType: 'img', typecode: '2022', count: '无' },
+                    { text: '机房平面布置图' },
+                    { text: '楼层分布' },
                 ],
                 1006: [
                     //电梯
-                    { text: '扶梯原理图', id: '' },
-                    { text: '直梯原理图', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '扶梯原理图', dataType: 'img', typecode: '2023', count: '无' },
+                    { text: '直梯原理图', dataType: 'img', typecode: '2024', count: '无' },
+                    { text: '楼层分布' },
                 ],
                 1007: [
                     // 燃气
-                    { text: '燃气系统原理示意图', id: '' },
-                    { text: '楼层分布', id: '' },
+                    { text: '燃气系统原理示意图', dataType: 'img', typecode: '2025', count: '无' },
+                    { text: '楼层分布' },
                 ],
                 1008: [
                     // 土建
-                    { text: '建筑立面图', id: '' },
-                    { text: '石材铺装', id: '' },
+                    { 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) {

+ 1 - 1
src/views/otherMatter/ComprehensiveMatter.vue

@@ -16,7 +16,7 @@
                     </div>
                     <!-- 其他部门 -->
                     <div class='other-department' v-else>
-                        <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus(item)' />
+                        <van-cell title='其他' :arrow-direction='item.arrowDirection ||"up"' is-link @click='changeOtherShowStatus(item)' />
                         <div class='other-container' v-if='item.showOther'>
                             <van-cell
                                 :title='detail.otherdescription'

+ 13 - 8
src/views/overview/UpdateRecordDetail.vue

@@ -106,7 +106,7 @@
             <!-- <div>暂无数据</div> -->
         </div>
         <!-- 现场照片预览 -->
-        <ImagePreview class='update-img-preview' :visible.sync='showImgPreview' :imgList='imgList' />
+        <ImagePreview class='update-img-preview' :key='imgKey' :visible.sync='showImgPreview' :imgList='imgList' />
 
         <!-- 任务信息 -->
         <div class='task-info-container' v-show='showTask'>
@@ -166,6 +166,7 @@ export default {
             showTask: false, //是否展示工单/任务信息 页面
             showImgPreview: false, //是否展示图片预览
             imgList: [], //图片数组
+            imgKey: `img${new Date().getTime()}`,
             data: {}, //页面显示数据
             taskText: '', //    工单,任务信息 页面title
             taskData: {
@@ -328,8 +329,8 @@ export default {
                     description: data.description || '--', //描述
                     reporter: data.reportedby || '--', //填报人
                     phone: data.phone || '--', //联系电话    // TODO: 联系电话
-                    reportDate: data.reportdate? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
-                    acceptanceDate: data.sjjssj? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
+                    reportDate: data.reportdate ? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
+                    acceptanceDate: data.sjjssj ? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
                 }
             } else if (this.type === 4) {
                 this.taskText = '工单'
@@ -340,8 +341,8 @@ export default {
                     description: data.description || '--', //描述
                     reporter: data.reportedby || '--', //填报人
                     phone: data.phone || '--', //联系电话    // TODO: 联系电话
-                     reportDate: data.reportdate? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
-                    acceptanceDate: data.sjjssj? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
+                    reportDate: data.reportdate ? moment(data.reportdate).format('YYYY-MM-DD') : '--', //填报时间
+                    acceptanceDate: data.sjjssj ? moment(data.sjjssj).format('YYYY-MM-DD') : '--', //验收时间
                 }
             }
             if (this.data.wb_gzglid || this.data.wonum) {
@@ -350,9 +351,13 @@ export default {
         },
         // 显示图片预览弹窗
         showPhoto() {
-            if (this.imgList?.length) {
-                this.showImgPreview = true
-            }
+            this.imgKey = `img${new Date().getTime()}`
+            console.log(1111)
+            this.$nextTick(() => {
+                if (this.imgList?.length) {
+                    this.showImgPreview = true
+                }
+            })
         },
     },
 }