|
|
@ -149,19 +149,20 @@ export class UpdateLicenseListComponent implements OnInit { |
|
|
|
let newArr = [] |
|
|
|
let newArr = [] |
|
|
|
for (let index = 0; index < newElement.length; index++) { |
|
|
|
for (let index = 0; index < newElement.length; index++) { |
|
|
|
const item = newElement[index]; |
|
|
|
const item = newElement[index]; |
|
|
|
if (item.name == '公司名称') { |
|
|
|
let arr = [ |
|
|
|
newArr[0] = item |
|
|
|
'公司名称', '区域名称', '油站名称', '营业执照', '成品油零售经营批准证书', '危险化学品经营许可证', '食品经营许可证', '烟草经营许可证', '安全生产标准化认证证书', '排污许可证', '防雷检测报告', '计量检测报告', '职业危害因素检测报告', '安全现状评价报告', '安全应急预案备案回执', '环境应急预案备案回执', '油气回收系统年检报告', '大气污染物合规性监测报告', '主要负责人证书', '安全管理人员资格证书1', '安全管理人员资格证书2' |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
for (let i = 0; i < arr.length; i++) { |
|
|
|
|
|
|
|
const element = arr[i]; |
|
|
|
|
|
|
|
if (item.name == element) { |
|
|
|
|
|
|
|
newArr[i] = item |
|
|
|
newElement.splice(index--, 1) |
|
|
|
newElement.splice(index--, 1) |
|
|
|
} |
|
|
|
} |
|
|
|
if (item.name == '区域名称') { |
|
|
|
|
|
|
|
newArr[1] = item |
|
|
|
|
|
|
|
newElement.splice(index--, 1) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (item.name == '油站名称') { |
|
|
|
|
|
|
|
newArr[2] = item |
|
|
|
|
|
|
|
newElement.splice(index--, 1) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
newArr = newArr.filter((item) => { |
|
|
|
|
|
|
|
return item |
|
|
|
|
|
|
|
}) |
|
|
|
let atLastArr = newArr.concat(newElement); |
|
|
|
let atLastArr = newArr.concat(newElement); |
|
|
|
arr.push(atLastArr) |
|
|
|
arr.push(atLastArr) |
|
|
|
}); |
|
|
|
}); |
|
|
|