|
@@ -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;
|
|
|
}
|
|
|
}
|