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