yunxing 4 lat temu
rodzic
commit
c962c9229f

+ 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;

+ 49 - 25
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>
@@ -124,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' },
                 ],
             },
@@ -253,33 +254,33 @@ export default {
             ] */
 
             let currentSys = this.listData[this.currentSmsxt]
-            console.log(this.listData, 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(this.currentSmsxt)
+            // console.log(this.currentSmsxt)
             // 土建装饰单独处理 将东西南北合并到一起
             if (this.currentSmsxt === '1008') {
-                console.log(data)
+                // console.log(data)
                 let count = data.reduce((prev, current) => {
                     return prev + current.cnt
                 }, 0)
-                console.log(count)
+                // console.log(count)
                 currentSys.map((item) => {
                     if (item.dataType === 'img') {
                         item.count = count ? count + '张' : '无' // + '张' || '无'
                     }
                 })
             }
-            console.log(currentSys)
+            // 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)
         },
         /**
          * 查询设备卡片
@@ -294,15 +295,38 @@ export default {
             try {
                 res = await querySystemCard({ getParams })
             } catch (error) {}
-            console.log('设备卡片')
-            console.log(res.data)
+            // 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)
+            // console.log(cardList)
+            cardList.map((item) => {
+                item.unit = '台' //单位  //TODO: 设备卡片单位处理?
+                item.total = item.asset_num // card 第二行台数
+                item.name = item.category_name //card 第一行名称
+                /**
+                 * 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) {
@@ -335,8 +359,8 @@ export default {
          *  显示原理图
          */
         async showImage(item) {
-            console.log('显示原理图')
-            console.log(item)
+            // // console.log('显示原理图')
+            // // console.log(item)
             let getParams = {
                 plazaId: this.plazaId,
                 module: this.module,
@@ -345,7 +369,7 @@ export default {
                 system: this.smsxt,
             }
             let res = await querySystemImage({ getParams })
-            console.log(res)
+            // console.log(res)
             if (!res && !res?.data) {
                 return false
             }
@@ -373,7 +397,7 @@ export default {
             // this.$router.push({ name: 'SystemFloor', params: { title } })
         },
         goToEquipment(data) {
-            console.log(data)
+            // console.log(data)
         },
     },
 }
@@ -419,10 +443,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;
             }
         }