yunxing 4 年之前
父節點
當前提交
948cab2f92
共有 1 個文件被更改,包括 10 次插入1 次删除
  1. 10 1
      src/views/equipmentFacilities/index.vue

+ 10 - 1
src/views/equipmentFacilities/index.vue

@@ -305,9 +305,18 @@ export default {
             let cardList = data[0]?.assetTypeList || []
             // console.log(cardList)
             cardList.map((item) => {
-                item.unit = '台' //单位  //TODO: 设备卡片单位处理?
                 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:重要维修
                  */