|
|
@ -6,6 +6,7 @@ import { Observable, fromEvent } from 'rxjs'; |
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
import { DetailsFileCategoryComponent } from '../../license/file-category/details-file-category/details-file-category.component'; |
|
|
|
import { DetailsFileCategoryComponent } from '../../license/file-category/details-file-category/details-file-category.component'; |
|
|
|
import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component'; |
|
|
|
import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component'; |
|
|
|
|
|
|
|
import { AuditDetailsInformTimeComponent } from '../audit-inform-time/audit-details-inform-time/audit-details-inform-time.component'; |
|
|
|
import { GasBaseInfoComponent } from '../gas-base-info/gas-base-info.component'; |
|
|
|
import { GasBaseInfoComponent } from '../gas-base-info/gas-base-info.component'; |
|
|
|
import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; |
|
|
|
import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; |
|
|
|
|
|
|
|
|
|
|
@ -34,6 +35,7 @@ export class AuditIngComponent implements OnInit { |
|
|
|
MaxResultCount: string = '100' |
|
|
|
MaxResultCount: string = '100' |
|
|
|
//获取当前油站档案类证照
|
|
|
|
//获取当前油站档案类证照
|
|
|
|
getStationList() { |
|
|
|
getStationList() { |
|
|
|
|
|
|
|
this.tableSpin = true |
|
|
|
let data = JSON.parse(sessionStorage.getItem('userdata')); |
|
|
|
let data = JSON.parse(sessionStorage.getItem('userdata')); |
|
|
|
let params = { |
|
|
|
let params = { |
|
|
|
OrganizationUnitId: data.organization.id || "" , |
|
|
|
OrganizationUnitId: data.organization.id || "" , |
|
|
@ -47,6 +49,7 @@ export class AuditIngComponent implements OnInit { |
|
|
|
element.itemData = JSON.parse(element.itemData) |
|
|
|
element.itemData = JSON.parse(element.itemData) |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.list = info.result.items || [] |
|
|
|
this.list = info.result.items || [] |
|
|
|
|
|
|
|
this.tableSpin = false |
|
|
|
console.log(this.list) |
|
|
|
console.log(this.list) |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
@ -91,7 +94,7 @@ export class AuditIngComponent implements OnInit { |
|
|
|
url = '/api/services/app/StationFileLicense/Audit' |
|
|
|
url = '/api/services/app/StationFileLicense/Audit' |
|
|
|
} |
|
|
|
} |
|
|
|
let params = { |
|
|
|
let params = { |
|
|
|
id: item.getData.id, |
|
|
|
id: item.auditType == 0? item.gasStation.id : item.getData.id, |
|
|
|
remark: instance.textarea |
|
|
|
remark: instance.textarea |
|
|
|
} |
|
|
|
} |
|
|
|
let body = instance.isPass? 2 : 3; |
|
|
|
let body = instance.isPass? 2 : 3; |
|
|
@ -114,7 +117,7 @@ export class AuditIngComponent implements OnInit { |
|
|
|
if (item.auditType == 0) { |
|
|
|
if (item.auditType == 0) { |
|
|
|
component = GasBaseInfoComponent |
|
|
|
component = GasBaseInfoComponent |
|
|
|
} else if (item.auditType == 1) { |
|
|
|
} else if (item.auditType == 1) { |
|
|
|
|
|
|
|
component = AuditDetailsInformTimeComponent |
|
|
|
} else if (item.auditType == 2) { |
|
|
|
} else if (item.auditType == 2) { |
|
|
|
component = DetailsUpdateCategoryComponent |
|
|
|
component = DetailsUpdateCategoryComponent |
|
|
|
} else if (item.auditType) { |
|
|
|
} else if (item.auditType) { |
|
|
|