|
@@ -659,7 +659,8 @@ export default {
|
|
|
type == "高风险" ? this.stores.sadianIcon.gfx : type == "较高风险" ? this.stores.sadianIcon.jgfx : type == "一般风险" ? this.stores.sadianIcon.ybfx : type == "低风险" ? this.stores.sadianIcon.dfx :
|
|
|
|
|
|
type == "单位巡检" ? this.stores.sadianIcon.dwxj : type == "物联网设备" ? this.stores.sadianIcon.dwxj : type == "监控视频" ? this.stores.sadianIcon.ssjq : type == "监督检查" ? this.stores.sadianIcon.jdjc :
|
|
|
-
|
|
|
+ type == "养老机构安全隐患清单" ? this.stores.sadianIcon.xfdjl :
|
|
|
+ type == "医疗机构安全隐患清单" ? this.stores.sadianIcon.zzd :
|
|
|
|
|
|
this.stores.sadianIcon.trsy,
|
|
|
|
|
@@ -1048,6 +1049,32 @@ export default {
|
|
|
}, ];
|
|
|
this.popup(val._attrbutes, arrayList, true)
|
|
|
}
|
|
|
+ if (type == "养老机构安全隐患清单") {
|
|
|
+ console.log(val.attrbutes)
|
|
|
+ let arrayList = [{
|
|
|
+ title: ["养老机构安全隐患清单", true],
|
|
|
+ children: [
|
|
|
+ ["设施名称:", val.attrbutes.facilityName, 24],
|
|
|
+ ["设施类型:", val.attrbutes.facilityType, 24],
|
|
|
+ ["地址:", val.attrbutes.address, 24],
|
|
|
+ ["所属街镇:", val.attrbutes.streetTown, 24],
|
|
|
+ ],
|
|
|
+ }, ];
|
|
|
+ this.popup(val._attrbutes, arrayList, true)
|
|
|
+ }
|
|
|
+ if (type == "医疗机构安全隐患清单") {
|
|
|
+ console.log(val.attrbutes)
|
|
|
+ let arrayList = [{
|
|
|
+ title: ["医疗机构安全隐患清单", true],
|
|
|
+ children: [
|
|
|
+ ["设施名称:", val.attrbutes.facilityName, 24],
|
|
|
+ ["设施类型:", val.attrbutes.facilityType, 24],
|
|
|
+ ["地址:", val.attrbutes.address, 24],
|
|
|
+ ["所属街镇:", val.attrbutes.streetTown, 24],
|
|
|
+ ],
|
|
|
+ }, ];
|
|
|
+ this.popup(val._attrbutes, arrayList, true)
|
|
|
+ }
|
|
|
}
|
|
|
//火灾数据分析
|
|
|
if (pageType == "fire-data-analysis") {
|