邵佳豪 3 years ago
parent
commit
94575d290a
  1. 19
      src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html
  2. 9
      src/app/pages/audit/audit-ing/audit-ing.component.html
  3. 57
      src/app/pages/audit/audit-ing/audit-ing.component.ts
  4. 24
      src/app/pages/audit/audit-record/audit-record.component.html
  5. 134
      src/app/pages/audit/audit-record/audit-record.component.ts
  6. 27
      src/app/pages/audit/gas-base-info/gas-base-info.component.html
  7. 32
      src/app/pages/audit/gas-base-info/gas-base-info.component.scss
  8. 30
      src/app/pages/audit/gas-base-info/gas-base-info.component.ts
  9. 7
      src/app/pages/license/file-category/details-file-category/details-file-category.component.html
  10. 9
      src/app/pages/license/file-category/file-category.component.html
  11. 7
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html
  12. 7
      src/app/pages/license/update-category/update-category.component.html
  13. 1
      src/app/pages/license/update-category/update-category.component.ts

19
src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html

@ -7,10 +7,22 @@
</div>
<div class="content">
<p *ngIf="data.auditType != 0 && data.gasStation">{{data.gasStation.companyName}} - {{data.gasStation.locationName}} - {{data.gasStation.stationName}}</p>
<div class="cutoffrule" *ngIf="data.auditType != 0"></div>
<p *ngIf="data.auditType != 0 && data.auditType != 1 && data.gasStation">{{data.gasStation.companyName}} - {{data.gasStation.locationName}} - {{data.gasStation.stationName}}</p>
<div class="cutoffrule" *ngIf="data.auditType != 0 && data.auditType != 1"></div>
<div *ngIf="data.auditType == 0"><app-gas-base-info [data]="data"></app-gas-base-info></div>
<div *ngIf="data.auditType == 1"></div>
<div *ngIf="data.auditType == 1">
<p>
办理提醒时间:修改时间 &nbsp;&nbsp;{{data.getData.handleRemindDays}}天
<span style="float: right;">默认时间 {{data.getData.handleRemindDaysDefault}}天</span>
</p>
<div class="cutoffrule"></div>
<p>
临期提醒时间:修改时间 &nbsp;&nbsp;{{data.getData.closingRemindDays}}天
<span style="float: right;">默认时间 {{data.getData.closingRemindDaysDefault}}天</span>
</p>
<div class="cutoffrule"></div>
<p>修改说明: &nbsp;&nbsp;{{data.getData.remark}}</p>
</div>
<div *ngIf="data.auditType == 2">
<p>证件名称: &nbsp;&nbsp;{{data.getData.licenseTypeName}}</p>
<div class="cutoffrule"></div>
@ -28,7 +40,6 @@
<p>证件名称: &nbsp;&nbsp;{{data.getData.licenseTypeName}}</p>
<div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;<span *ngIf="data.getData.validatyType == 0">不适用</span><span *ngIf="data.getData.validatyType == 1"></span><span *ngIf="data.getData.validatyType == 2"></span></p>
<div class="cutoffrule"></div>
</div>
<div class="cutoffrule"></div>
<p [hidden]="data.getData.imageUrl === undefined">证件图片: &nbsp;&nbsp;

9
src/app/pages/audit/audit-ing/audit-ing.component.html

@ -31,14 +31,7 @@
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.companyName}}</label></td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</td>
<td>
<span *ngIf="item.auditStatus == 0"></span>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">未提交审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
</td>
<td>{{item.auditStatusDesc}}</td>
<td class="operation">
<span class="blueColor" (click)="dispose(item)">处置</span>
<span class="blueColor" (click)="details(item)">详情</span>

57
src/app/pages/audit/audit-ing/audit-ing.component.ts

@ -1,11 +1,12 @@
import { HttpClient } from '@angular/common/http';
import { Component, OnInit, ViewContainerRef } from '@angular/core';
import { Component, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
import { NzMessageService } from 'ng-zorro-antd/message';
import { NzModalService } from 'ng-zorro-antd/modal';
import { Observable, fromEvent } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
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 { 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 { AuditDisposeComponent } from './audit-dispose/audit-dispose.component';
@ -16,7 +17,7 @@ import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component';
})
export class AuditIngComponent implements OnInit {
constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService) { }
constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService,private element: ElementRef) { }
tableSpin = false
tableScrollHeight
@ -29,11 +30,24 @@ export class AuditIngComponent implements OnInit {
this.getStationList()
}
ngAfterViewInit(): void {
fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件
if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) {
if (this.totalCount > this.list.length) {
this.SkipCount = String(Number(this.SkipCount) + 50)
this.getStationList()
}
}
});
}
list = []
SkipCount: string = '0'
MaxResultCount: string = '100'
totalCount;//列表总数
SkipCount: string = '0';
MaxResultCount: string = '100';
//获取当前油站档案类证照
getStationList() {
this.tableSpin = true
let data = JSON.parse(sessionStorage.getItem('userdata'));
let params = {
OrganizationUnitId: data.organization.id || "" ,
@ -46,7 +60,10 @@ export class AuditIngComponent implements OnInit {
info.result.items.forEach(element => {
element.itemData = JSON.parse(element.itemData)
});
this.list = info.result.items || []
this.list = this.list.concat(info.result.items);
this.list = [...this.list]
this.totalCount = info.result.totalCount
this.tableSpin = false
console.log(this.list)
})
}
@ -91,7 +108,7 @@ export class AuditIngComponent implements OnInit {
url = '/api/services/app/StationFileLicense/Audit'
}
let params = {
id: item.getData.id,
id: item.auditType == 0? item.gasStation.id : item.getData.id,
remark: instance.textarea
}
let body = instance.isPass? 2 : 3;
@ -114,13 +131,14 @@ export class AuditIngComponent implements OnInit {
if (item.auditType == 0) {
component = GasBaseInfoComponent
} else if (item.auditType == 1) {
component = AuditDetailsInformTimeComponent
} else if (item.auditType == 2) {
component = DetailsUpdateCategoryComponent
} else if (item.auditType) {
component = DetailsFileCategoryComponent
}
if (item.getData) {
this.getData(item).then(res=>{
item.getData = res
const modal = this.modal.create({
nzContent: component,
nzViewContainerRef: this.viewContainerRef,
@ -141,28 +159,7 @@ export class AuditIngComponent implements OnInit {
nzFooter: null,
nzClosable: false,
});
} else {
this.getData(item).then(res=>{
item.getData = res
const modal = this.modal.create({
nzContent: component,
nzViewContainerRef: this.viewContainerRef,
nzWidth: 450,
nzBodyStyle: {
'border': '1px solid #91CCFF',
'border-radius': '0px',
'padding': '7px',
'box-shadow': '0 0 8px 0 #fff',
'background-image': 'linear-gradient(#003665, #000f25)'
},
nzComponentParams: {
data: item.getData
},
nzFooter: null,
nzClosable: false,
});
})
}
})
}
//获取证照类data

24
src/app/pages/audit/audit-record/audit-record.component.html

@ -53,6 +53,7 @@
<nz-option nzValue="1" nzLabel="总公司"></nz-option>
<nz-option nzValue="2" nzLabel="省公司"></nz-option>
<nz-option nzValue="3" nzLabel="区域"></nz-option>
<nz-option nzValue="4" nzLabel="油站"></nz-option>
</nz-select>
</nz-form-control>
</nz-form-item>
@ -92,7 +93,7 @@
</th>
<th>审批信息</th>
<th>加油站名称</th>
<th>区域</th>
<th [nzWidth]="'16%'">区域</th>
<th>省公司</th>
<th>提交时间</th>
<th>审批状态</th>
@ -102,16 +103,21 @@
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<td>
<span style="margin-left: 25%;">审批类型</span>
<span style="margin-left: 25%;">{{item.auditTitle || ''}}</span>
</td>
<td>
<span *ngIf="item.auditType == 0">油站信息</span>
<span *ngIf="item.auditType == 1">更新类证照提醒时间</span>
<span *ngIf="item.auditType == 2">更新类证照</span>
<span *ngIf="item.auditType == 3">档案类证照</span>
</td>
<td>审批信息</td>
<td>加油站名称</td>
<td>区域</td>
<td>省公司</td>
<td>提交时间</td>
<td>审批状态</td>
<td><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td><label *ngIf="item.gasStation">{{item.gasStation.companyName}}</label></td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</td>
<td>{{item.auditStatusDesc}}</td>
<td class="operation">
<span class="blueColor">详情</span>
<span class="blueColor" (click)="details(item)">详情</span>
</td>
</tr>
</tbody>

134
src/app/pages/audit/audit-record/audit-record.component.ts

@ -5,6 +5,11 @@ import { NzModalService } from 'ng-zorro-antd/modal';
import { Observable, fromEvent } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
import { TreeService } from 'src/app/service/tree.service';
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 { AuditDetailsInformTimeComponent } from '../audit-inform-time/audit-details-inform-time/audit-details-inform-time.component';
import { GasBaseInfoComponent } from '../gas-base-info/gas-base-info.component';
@Component({
selector: 'app-audit-record',
templateUrl: './audit-record.component.html',
@ -14,7 +19,7 @@ export class AuditRecordComponent implements OnInit {
validateForm!: FormGroup;
constructor(private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private toTree: TreeService, private http: HttpClient, private fb: FormBuilder) { }
list = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
list = []
tableScrollHeight
startdate
@ -41,7 +46,6 @@ export class AuditRecordComponent implements OnInit {
let lastD = lw.getDate();
this.startdate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px'
// 页面监听
fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => {
@ -49,38 +53,34 @@ export class AuditRecordComponent implements OnInit {
});
this.getTypeList()
await this.getAllOrganization()
this.getRecordList()
}
SkipCount
submitForm(): void {
for (const i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
if (this.validateForm.value.datePicker[0].toLocaleDateString) {
this.validateForm.value.datePicker[0] = this.validateForm.value.datePicker[0].toLocaleDateString()
}
if (this.validateForm.value.datePicker[1].toLocaleDateString) {
this.validateForm.value.datePicker[1] = this.validateForm.value.datePicker[1].toLocaleDateString()
}
this.list = []
this.SkipCount = '0'
// this.getRecordList()
this.getRecordList()
}
resetForm(e: MouseEvent): void {
e.preventDefault();
this.validateForm.reset();
for (const key in this.validateForm.controls) {
this.validateForm.controls[key].markAsPristine();
this.validateForm.controls[key].updateValueAndValidity();
}
this.validateForm.patchValue({
organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id,
datePicker: [this.startdate, this.enddate],
});
this.list = []
this.SkipCount = '0'
// this.getViolateRecgordList()
this.getRecordList()
}
//获取所有组织机构
nodes: any = []
async getAllOrganization() {
@ -101,7 +101,6 @@ export class AuditRecordComponent implements OnInit {
element.title = element.displayName
});
this.nodes = [...this.toTree.toTree(data.result.items)]
console.log('组织机构列表', this.nodes)
this.validateForm.patchValue({
organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id,
datePicker: [this.startdate, this.enddate],
@ -148,48 +147,103 @@ export class AuditRecordComponent implements OnInit {
});
this.typeLoading = false
this.typeList = arr
// console.log('证照类型', arr)
}).catch((error) => {
console.log('证照类型', error)
})
}
//历史记录列表
totalCount//列表总数
tableSpin = false
SkipCount: string = '0'
MaxResultCount: string = '100'
getRecordList() {
console.log('获得历史记录列表')
this.tableSpin = true
let params = {
// Level: this.validateForm.value.level,
// ViolationIds: ViolationIds,
// ViolateArea: this.validateForm.value.site,
// OrganizationUnitId: this.validateForm.value.organization,
// IsContainsChildren: 'true',
// IsHandled: disposalState,
// ViolateTime: this.validateForm.value.datePicker ? [moment(this.validateForm.value.datePicker[0]).format('yyyy-MM-DD'), moment(this.validateForm.value.datePicker[1]).format('yyyy-MM-DD')] : null,
// SkipCount: this.SkipCount,
// MaxResultCount: this.MaxResultCount,
// Positive: this.validateForm.value.misinformation
IsContainsChildren: 'true',
OrganizationUnitId: this.validateForm.value.organization,
AuditTitle: this.validateForm.value.type,
AuditType: this.validateForm.value.info,
StartTime: this.validateForm.value.datePicker[0],
EndTime: this.validateForm.value.datePicker[1],
AuditStatuses: this.validateForm.value.state,
AuditLevel: this.validateForm.value.level,
Sorting: null,
SkipCount: this.SkipCount,
MaxResultCount: this.MaxResultCount,
}
// this.tableSpin = true
// this.http.get('/api/services/app/ViolateRecord/GetAll', {
// params: params
// }).subscribe((data: any) => {
// this.list = this.list.concat(data.result.items);
// this.list = [...this.list]
// this.totalCount = data.result.totalCount
// console.log('违规记录列表', data)
// this.tableSpin = false
// })
this.http.get('/api/services/app/ContentAuditLog/GetHistory', {params}).subscribe((data: any) => {
this.list = this.list.concat(data.result.items);
this.list = [...this.list]
this.totalCount = data.result.totalCount
this.tableSpin = false
console.log('审核历史纪录', this.list)
})
}
details(item) {
let component
if (item.auditType == 0) {
component = GasBaseInfoComponent
} else if (item.auditType == 1) {
component = AuditDetailsInformTimeComponent
} else if (item.auditType == 2) {
component = DetailsUpdateCategoryComponent
} else if (item.auditType) {
component = DetailsFileCategoryComponent
}
this.getData(item).then(res=>{
item.getData = res
const modal = this.modal.create({
nzContent: component,
nzViewContainerRef: this.viewContainerRef,
nzWidth: item.auditType == 0? 700 : 450,
nzBodyStyle: {
'border': '1px solid #91CCFF',
'border-radius': '0px',
'padding': '7px',
'box-shadow': '0 0 8px 0 #fff',
'background-image': 'linear-gradient(#003665, #000f25)'
},
nzStyle: {
'top': '50px',
},
nzComponentParams: {
data: item.getData
},
nzFooter: null,
nzClosable: false,
});
})
}
//获取证照类data
getData(item) {
let url
if (item.auditType == 0) { //油站基本信息
return new Promise((resolve, reject)=>{
let organization = { organizationId: item.organizationId }
resolve(organization)
})
} else if (item.auditType == 1) {
url = '/api/services/app/OrganizationValidityLicenseRule/Get'
} else if (item.auditType == 2) {
url = '/api/services/app/StationValidityLicense/Get'
} else if (item.auditType) {
url = '/api/services/app/StationFileLicense/Get'
}
return new Promise((resolve, reject)=>{
let params = { id: item.itemId }
this.http.get(url,{params}).subscribe((data: any)=>{
resolve(data.result)
})
})
}
ngAfterViewInit(): void {
fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件
if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) {
if (this.totalCount > this.list.length) {
console.log('需要加载数据了', event)
this.SkipCount = String(Number(this.SkipCount) + 50)
this.getRecordList()
}

27
src/app/pages/audit/gas-base-info/gas-base-info.component.html

@ -1,4 +1,11 @@
<div>
<div [ngStyle]="{'padding': isDetails? '0 15px' : null}">
<div class="title" *ngIf="isDetails">
<div class="titlecontent">
详情
</div>
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i>
</div>
<p>
<label class="marginLeft">站名: &nbsp;&nbsp;{{baseInfo.stationName}}</label>
<label>开业时间: &nbsp;&nbsp;{{baseInfo.openTime | date:"yyyy/MM/dd"}}</label>
@ -67,4 +74,22 @@
</p>
<div class="cutoffrule"></div>
</div>
<!-- <p class="recordP" *ngIf="isDetails">
<span>审核记录</span>
<span>
<span style="margin-right: 6px;">
审核次数:{{auditList.length}}
</span>
<span>
驳回次数:{{getRejectNum()}}
</span>
</span>
</p>
<nz-timeline *ngIf="isDetails">
<nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span>{{item.auditStatus | auditStatus}}</span>
</nz-timeline-item>
</nz-timeline> -->
</div>

32
src/app/pages/audit/gas-base-info/gas-base-info.component.scss

@ -12,4 +12,36 @@ label{ display: inline-block; vertical-align: middle; }
.marginLeft {
width: 55%;
overflow: hidden;
}
.title {
font-family: sybold;
width: 100%;
height: 48px;
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%);
display: flex;
align-items: center;
position: relative;
.titlecontent {
width: 100%;
height: 32px;
line-height: 32px;
background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%);
text-align: center;
color: #91CCFF;
font-size: 16px;
}
i {
position: absolute;
right: 12px;
color: #fff;
font-size: 18px;
cursor: pointer;
}
}
.recordP{
display: flex;
justify-content: space-between;
align-items: center;
}

30
src/app/pages/audit/gas-base-info/gas-base-info.component.ts

@ -16,8 +16,8 @@ export class GasBaseInfoComponent implements OnInit {
ngOnInit(): void {
if (this.data.id === undefined) { //详情
console.log(this.data,'gasInfo')
this.isDetails = true
//this.getAuditLogging()
}
this.getBaseInfo()
}
@ -33,4 +33,32 @@ export class GasBaseInfoComponent implements OnInit {
})
}
destroyModal() {
this.modal.destroy({ data: 'this the result data' });
}
auditList: any[] = [];
//获取审核记录
getAuditLogging() {
if (!this.data.organizationId) {
return
}
let params = { orgId: this.data.organizationId }
this.http.get(`/api/services/app/GasStation/GetAuditted`,{params}).subscribe((data: any)=>{
//this.auditList = data.result.actionList || []
console.log(data)
})
}
//获取驳回次数
getRejectNum(): number {
let num = 0
this.auditList.forEach(item=>{
if (item.auditStatus == 3) {
num = num + 1
}
})
return num
}
}

7
src/app/pages/license/file-category/details-file-category/details-file-category.component.html

@ -29,12 +29,7 @@
<nz-timeline>
<nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span *ngIf="item.auditStatus == 0"></span>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">已撤销审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
<span>{{item.auditStatus | auditStatus}}</span>
</nz-timeline-item>
</nz-timeline>
<ng-template #soccerTemplate>

9
src/app/pages/license/file-category/file-category.component.html

@ -29,18 +29,13 @@
</td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}<span *ngIf="!item.committedTime">未提交审核</span></td>
<td>
<span *ngIf="item.auditStatus == 0"></span>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">未提交审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
<span>{{item.auditStatus | auditStatus}}</span>
</td>
<td class="operation">
<span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="details(item)">详情</span>
<span class="blueColor" (click)="cancelReview(item)" *ngIf="item.auditStatus === 1">撤销审核</span>
<span class="blueColor" (click)="submitReview(item)" *ngIf="item.auditStatus === 0 || item.auditStatus === 4">提交审核</span>
<span class="blueColor" (click)="submitReview(item)" *ngIf="item.auditStatus === 0">提交审核</span>
<span class="blueColor" *ngIf="item.auditStatus == 5">审核完成</span>
</td>
</tr>

7
src/app/pages/license/update-category/details-update-category/details-update-category.component.html

@ -39,12 +39,7 @@
<nz-timeline>
<nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span *ngIf="item.auditStatus == 0"></span>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">已撤销审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
<span>{{item.auditStatus | auditStatus}}</span>
</nz-timeline-item>
</nz-timeline>
<ng-template #soccerTemplate>

7
src/app/pages/license/update-category/update-category.component.html

@ -47,12 +47,7 @@
<!-- <td><span *ngIf="item.isYearlyCheck">是</span><span *ngIf="!item.isYearlyCheck">否</span></td> -->
<td>{{item.committedTime | date:"yyyy/MM/dd"}}<span *ngIf="!item.committedTime">未提交审核</span></td>
<td>
<span *ngIf="item.auditStatus == 0"></span>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">未提交审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
<span>{{item.auditStatus | auditStatus}}</span>
</td>
<td>
<span *ngIf="item.licenseViolationType == 0"></span>

1
src/app/pages/license/update-category/update-category.component.ts

@ -38,6 +38,7 @@ export class UpdateCategoryComponent implements OnInit {
this.http.get(`/api/services/app/StationValidityLicense/GetCurStationLicense`,{params}).subscribe((info: any)=>{
this.tableSpin = false
this.list = info.result
this.tableSpin = false
console.log(info.result)
})
}

Loading…
Cancel
Save