|
|
|
@ -469,7 +469,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
data[0].buildtype = n.name |
|
|
|
|
data[0].tongyong = true |
|
|
|
|
data[0].index = x.index |
|
|
|
|
if(data[0].buildtype == "石油化工类" || data[0].buildtype == "化工生产"){ |
|
|
|
|
if(data[0].buildtype.indexOf('化工') != -1 || data[0].buildtype.indexOf('储罐') != -1){ |
|
|
|
|
data[0].tongyong = false |
|
|
|
|
data[0].isshiyou = true |
|
|
|
|
this.deviceinfodata = data[0].buildingBasicGroups[1].propertyInfos //存储装置信息的初始数据,需要转换成datasource形式
|
|
|
|
@ -631,7 +631,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
data[0].tongyong = true |
|
|
|
|
data[0].index = index |
|
|
|
|
|
|
|
|
|
if(data[0].buildtype == "石油化工类" || data[0].buildtype == "化工生产"){ |
|
|
|
|
if(data[0].buildtype.indexOf('化工') != -1 || data[0].buildtype.indexOf('储罐') != -1){ |
|
|
|
|
data[0].tongyong = false |
|
|
|
|
data[0].isshiyou = true |
|
|
|
|
let noemptydeviceArr = data[0].buildingBasicGroups[1].propertyInfos |
|
|
|
@ -890,7 +890,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
data[0].username = n.name |
|
|
|
|
data[0].tongyong = true |
|
|
|
|
data[0].index = this.houses.length //////////////////
|
|
|
|
|
if(data[0].buildtype == "石油化工类" || data[0].buildtype == "化工生产"){ |
|
|
|
|
if(data[0].buildtype.indexOf('化工') != -1 || data[0].buildtype.indexOf('储罐') != -1){ |
|
|
|
|
data[0].tongyong = false |
|
|
|
|
data[0].isshiyou = true //如果是石油化工则启用石油化工的模板
|
|
|
|
|
this.deviceinfodata = data[0].buildingBasicGroups[1].propertyInfos //存储装置信息表格的初始数据,需要转换成datasource形式
|
|
|
|
@ -1470,7 +1470,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(item.buildtype != "石油化工类" && item.buildtype != "地铁类" && item.buildtype != "化工生产"){ |
|
|
|
|
if(item.buildtype.indexOf('化工') == -1 && item.buildtype != "地铁类" && item.buildtype.indexOf('储罐') == -1){ |
|
|
|
|
// console.log(this.houses[key])
|
|
|
|
|
// console.log(value)
|
|
|
|
|
this.houses[key].buildingBasicGroups[0].propertyInfos.forEach(item => { |
|
|
|
@ -1522,7 +1522,7 @@ export class BasicinfoComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if(item.buildtype == "石油化工类" || item.buildtype == "化工生产"){ |
|
|
|
|
if(item.buildtype.indexOf('化工') != -1 || item.buildtype.indexOf('储罐') != -1){ |
|
|
|
|
// console.log(888,item)
|
|
|
|
|
let bodyObj = _.cloneDeep(item)
|
|
|
|
|
delete bodyObj.name |
|
|
|
|