Pārlūkot izejas kodu

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

zhangyu 4 gadi atpakaļ
vecāks
revīzija
0e5a9961a4

+ 20 - 9
src/components/equipmentFacilities/Card.vue

@@ -2,13 +2,13 @@
     <div class='m-card' :class='"type-"+type'>
         <div class='name'>{{name}}</div>
         <div class='number'>
-            {{number}}
-            <i></i>
+            {{total}}
+            <i>{{unit}}</i>
         </div>
         <div class='type'>
             {{typeDict[type]}}
             <i v-show='[2,3].includes(type)'>:</i>
-            <i v-show='[2,3].includes(type)'>{{total}}</i>
+            <i v-show='[2,3].includes(type)'>{{number}}</i>
         </div>
         <!-- 右上角tag -->
         <div class='tag' v-if='[2,3].includes(type)'></div>
@@ -17,6 +17,11 @@
 <script>
 /**
  * 设备卡片
+ * @props type 类型
+ * @props name 设备类型名称
+ * @props total 设备数量
+ * @props unit 单位
+ * @props number 重要维保/维修 的数量
  */
 export default {
     name: 'Card',
@@ -24,22 +29,27 @@ export default {
         type: {
             //1 正常, 2维保 3 维修
             type: Number,
-            default: 1,
+            default: 0,
             required: true,
         },
         name: {
             type: String,
-            default: '消防主机',
+            default: '',
+            required: true,
+        },
+        unit: {
+            type: String,
+            default: '',
             required: true,
         },
         total: {
             type: Number,
-            default: 10,
+            default: 0,
             required: true,
         },
         number: {
             type: Number,
-            default: 293,
+            // default: 0,
             required: false,
         },
     },
@@ -52,6 +62,7 @@ export default {
             },
         }
     },
+    created() {},
     components: {},
     beforeMount() {},
     mounted() {},
@@ -64,14 +75,14 @@ export default {
     height: 100%;
     border-radius: 4px;
     background-size: cover !important;
-    padding: 15px;
+    padding: 15px 0 15px 13px;
     line-height: 25px;
     display: flex;
     flex-direction: column;
     position: relative;
     .name,
     .number {
-        font-size: 16px;
+        font-size: 15px;
         font-weight: 500;
         color: #333333;
         flex: 1;

+ 105 - 24
src/views/equipmentFacilities/index.vue

@@ -26,12 +26,13 @@
             <div class='card-container'>
                 <m-card
                     class='card'
-                    :type='item'
-                    name='消防主机'
-                    :total='50'
-                    :numer='3'
-                    v-for='item in 5'
-                    :key='item'
+                    :type='item.type'
+                    :name='item.name'
+                    :unit='item.unit'
+                    :total='item.total'
+                    :numer='item.number'
+                    v-for='item in cardList'
+                    :key='item.category_name'
                     @click.native='goToEquipment(item)'
                 />
             </div>
@@ -45,7 +46,7 @@ import Vue from 'vue'
 import { Cell, Toast } from 'vant'
 Vue.use(Cell).use(Toast)
 import { mapGetters, mapMutations } from 'vuex'
-import { querySystemCount, querySystemImage } from '@/api/equipmentList'
+import { querySystemCount, querySystemCard, querySystemImage } from '@/api/equipmentList'
 
 import MCard from '@/components/equipmentFacilities/Card'
 import SystemMenu from '@/components/systemMenu'
@@ -118,11 +119,18 @@ export default {
                 ],
                 1008: [
                     // 土建
-                    { text: '建筑立面图', dataType: 'img', typecode: '2026', count: '无' },
+
+                    // 2026	东外立面
+                    // 2029	北外立面
+                    // 2028	南外立面
+                    // 2027	西外立面
+                    // { text: '建筑立面图', dataType: 'img', typecode: '2026', count: '无' },
+                    { text: '建筑立面图', dataType: 'img', typecode: `['2026', '2027', '2028', '2029']`, count: '无' },
                     { text: '楼层分布', dataType: 'floor' },
                 ],
             },
             listKey: `list_${new Date().getTime()}`,
+            cardList: [],
             showRight: false, //是否显示右侧内容
             showImgPreview: false, //是否展示图片预览
             imgList: [], //图片数组
@@ -140,7 +148,8 @@ export default {
         this.SETCATEGORYID('GDXT')
         this.SETSMSXT('1001')
         this.showRight = false
-        await this.getPicCount()
+        // 查询图片数量,设备卡片
+        await Promise.all([this.getPicCount(), this.getCard()])
         this.showRight = true
         // this.changeSystem(initSys)
     },
@@ -159,11 +168,14 @@ export default {
             this.currentSmsxt = smsxt
             this.systemText = text + '系统'
             /**
-             * 查询图片数量
+             * 查询图片数量,设备卡片
              */
-            await this.getPicCount()
+            await Promise.all([this.getPicCount(), this.getCard()])
             this.showRight = true
         },
+        /**
+         * 查询图片梳理
+         */
         async getPicCount() {
             let getParams = {
                 plazaId: this.plazaId,
@@ -242,19 +254,88 @@ export default {
             ] */
 
             let currentSys = this.listData[this.currentSmsxt]
-            console.log(currentSys)
+            // console.log(this.listData, currentSys)
             currentSys.map((item) => {
                 if (item.dataType === 'img') {
                     let detail = data.filter((v) => v.typecode == item.typecode)[0]
-                    console.log(detail)
+                    // console.log(detail)
                     item.count = detail?.cnt ? detail?.cnt + '张' : '无' // + '张' || '无'
                 }
             })
-            console.log(currentSys)
+            // console.log(this.currentSmsxt)
+            // 土建装饰单独处理 将东西南北合并到一起
+            if (this.currentSmsxt === '1008') {
+                // console.log(data)
+                let count = data.reduce((prev, current) => {
+                    return prev + current.cnt
+                }, 0)
+                // console.log(count)
+                currentSys.map((item) => {
+                    if (item.dataType === 'img') {
+                        item.count = count ? count + '张' : '无' // + '张' || '无'
+                    }
+                })
+            }
+            // console.log(currentSys)
             this.listKey = `list_${new Date().getTime()}`
             this.$set(this.listData, this.currentSmsxt, currentSys)
             Toast.clear()
-            console.log(this.listData)
+            // console.log(this.listData)
+        },
+        /**
+         * 查询设备卡片
+         */
+        async getCard() {
+            this.cardList = []
+            let getParams = {
+                plazaId: this.plazaId,
+                smsxt: this.smsxt,
+            }
+            let res
+            try {
+                res = await querySystemCard({ getParams })
+            } catch (error) {}
+            // console.log('设备卡片')
+            // console.log(res.data)
+            if (!res && !res?.data?.length) {
+                return false
+            }
+            let data = res.data
+            // 取出assetTypeList
+            let cardList = data[0]?.assetTypeList || []
+            // console.log(cardList)
+            cardList.map((item) => {
+                item.total = item.asset_num // card 第二行台数
+                item.name = item.category_name //card 第一行名称
+
+                // 设备卡片单位处理
+                if (item.name === '屋面logo') {
+                    item.unit = '个'
+                } else if (item.name === '玻璃护栏') {
+                    item.unit = '段'
+                } else {
+                    item.unit = '台'
+                }
+
+                /**
+                 * type 1: 正常运维 2:重要维保 3:重要维修
+                 */
+                // 及无异常 有无 检测中
+                if (!item.is_exception && !item.is_detecting) {
+                    item.type = 1
+                    item.number = 0
+                } else if (item.is_exception) {
+                    // 有异常
+                    item.type = 3
+                    item.number = item.is_exception_num
+                } else if (item.is_detecting) {
+                    // 检测中
+                    item.type = 2
+                    item.number = item.is_detecting_num
+                }
+            })
+            this.cardList = cardList
+            console.log(this.cardList)
         },
         handleClick(item) {
             switch (item.dataType) {
@@ -287,8 +368,8 @@ export default {
          *  显示原理图
          */
         async showImage(item) {
-            console.log('显示原理图')
-            console.log(item)
+            // // console.log('显示原理图')
+            // // console.log(item)
             let getParams = {
                 plazaId: this.plazaId,
                 module: this.module,
@@ -297,7 +378,7 @@ export default {
                 system: this.smsxt,
             }
             let res = await querySystemImage({ getParams })
-            console.log(res)
+            // console.log(res)
             if (!res && !res?.data) {
                 return false
             }
@@ -322,10 +403,10 @@ export default {
         handleFloor(item) {
             let title = this.systemText + '-楼层分布'
             // TODO: 楼层分布
-            this.$router.push({ name: 'SystemFloor', params: { title } })
+            // this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         goToEquipment(data) {
-            console.log(data)
+            // console.log(data)
         },
     },
 }
@@ -371,10 +452,10 @@ export default {
             flex-flow: wrap;
             .card {
                 flex: 1;
-                width: 48%;
-                margin: 2% 1%;
-                min-width: 48%; // 加入这两个后每个item的宽度就生效了
-                max-width: 48%; // 加入这两个后每个item的宽度就生效了
+                width: 50%;
+                margin: 2% 0;
+                min-width: 50%; // 加入这两个后每个item的宽度就生效了
+                max-width: 50%; // 加入这两个后每个item的宽度就生效了
                 height: 110px;
             }
         }