Browse Source

审核历史纪录完善

dev
陈鹏飞 3 years ago
parent
commit
dd51d502cc
  1. 24
      src/app/pages/audit/audit-ing/audit-ing.component.ts
  2. 24
      src/app/pages/audit/audit-record/audit-record.component.html
  3. 134
      src/app/pages/audit/audit-record/audit-record.component.ts
  4. 7
      src/app/pages/audit/gas-base-info/gas-base-info.component.html
  5. 7
      src/app/pages/license/file-category/details-file-category/details-file-category.component.html
  6. 9
      src/app/pages/license/file-category/file-category.component.html
  7. 7
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html
  8. 9
      src/app/pages/license/update-category/update-category.component.html

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

@ -1,5 +1,5 @@
import { HttpClient } from '@angular/common/http'; 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 { NzMessageService } from 'ng-zorro-antd/message';
import { NzModalService } from 'ng-zorro-antd/modal'; import { NzModalService } from 'ng-zorro-antd/modal';
import { Observable, fromEvent } from 'rxjs'; import { Observable, fromEvent } from 'rxjs';
@ -17,7 +17,7 @@ import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component';
}) })
export class AuditIngComponent implements OnInit { 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 tableSpin = false
tableScrollHeight tableScrollHeight
@ -30,9 +30,21 @@ export class AuditIngComponent implements OnInit {
this.getStationList() 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 = [] list = []
SkipCount: string = '0' totalCount;//列表总数
MaxResultCount: string = '100' SkipCount: string = '0';
MaxResultCount: string = '100';
//获取当前油站档案类证照 //获取当前油站档案类证照
getStationList() { getStationList() {
this.tableSpin = true this.tableSpin = true
@ -48,7 +60,9 @@ export class AuditIngComponent implements OnInit {
info.result.items.forEach(element => { info.result.items.forEach(element => {
element.itemData = JSON.parse(element.itemData) 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 this.tableSpin = false
console.log(this.list) console.log(this.list)
}) })

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="1" nzLabel="总公司"></nz-option>
<nz-option nzValue="2" nzLabel="省公司"></nz-option> <nz-option nzValue="2" nzLabel="省公司"></nz-option>
<nz-option nzValue="3" nzLabel="区域"></nz-option> <nz-option nzValue="3" nzLabel="区域"></nz-option>
<nz-option nzValue="4" nzLabel="油站"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -92,7 +93,7 @@
</th> </th>
<th>审批信息</th> <th>审批信息</th>
<th>加油站名称</th> <th>加油站名称</th>
<th>区域</th> <th [nzWidth]="'16%'">区域</th>
<th>省公司</th> <th>省公司</th>
<th>提交时间</th> <th>提交时间</th>
<th>审批状态</th> <th>审批状态</th>
@ -102,16 +103,21 @@
<tbody id="table"> <tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index"> <tr *ngFor="let item of headerTable.data;let key = index">
<td> <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><label *ngIf="item.gasStation">{{item.gasStation.stationName}}</label></td>
<td>加油站名称</td> <td><label *ngIf="item.gasStation">{{item.gasStation.locationName}}</label></td>
<td>区域</td> <td><label *ngIf="item.gasStation">{{item.gasStation.companyName}}</label></td>
<td>省公司</td> <td>{{item.committedTime | date:"yyyy/MM/dd"}}</td>
<td>提交时间</td> <td>{{item.auditStatusDesc}}</td>
<td>审批状态</td>
<td class="operation"> <td class="operation">
<span class="blueColor">详情</span> <span class="blueColor" (click)="details(item)">详情</span>
</td> </td>
</tr> </tr>
</tbody> </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 { Observable, fromEvent } from 'rxjs';
import { debounceTime } from 'rxjs/operators'; import { debounceTime } from 'rxjs/operators';
import { TreeService } from 'src/app/service/tree.service'; 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({ @Component({
selector: 'app-audit-record', selector: 'app-audit-record',
templateUrl: './audit-record.component.html', templateUrl: './audit-record.component.html',
@ -14,7 +19,7 @@ export class AuditRecordComponent implements OnInit {
validateForm!: FormGroup; validateForm!: FormGroup;
constructor(private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private toTree: TreeService, private http: HttpClient, private fb: FormBuilder) { } 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 tableScrollHeight
startdate startdate
@ -41,7 +46,6 @@ export class AuditRecordComponent implements OnInit {
let lastD = lw.getDate(); let lastD = lw.getDate();
this.startdate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期 this.startdate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px'
// 页面监听 // 页面监听
fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => {
@ -49,38 +53,34 @@ export class AuditRecordComponent implements OnInit {
}); });
this.getTypeList() this.getTypeList()
await this.getAllOrganization() await this.getAllOrganization()
this.getRecordList() this.getRecordList()
} }
SkipCount
submitForm(): void { submitForm(): void {
for (const i in this.validateForm.controls) { if (this.validateForm.value.datePicker[0].toLocaleDateString) {
this.validateForm.controls[i].markAsDirty(); this.validateForm.value.datePicker[0] = this.validateForm.value.datePicker[0].toLocaleDateString()
this.validateForm.controls[i].updateValueAndValidity(); }
if (this.validateForm.value.datePicker[1].toLocaleDateString) {
this.validateForm.value.datePicker[1] = this.validateForm.value.datePicker[1].toLocaleDateString()
} }
this.list = [] this.list = []
this.SkipCount = '0' this.SkipCount = '0'
// this.getRecordList() this.getRecordList()
} }
resetForm(e: MouseEvent): void { resetForm(e: MouseEvent): void {
e.preventDefault(); e.preventDefault();
this.validateForm.reset(); this.validateForm.reset();
for (const key in this.validateForm.controls) {
this.validateForm.controls[key].markAsPristine();
this.validateForm.controls[key].updateValueAndValidity();
}
this.validateForm.patchValue({ this.validateForm.patchValue({
organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id,
datePicker: [this.startdate, this.enddate], datePicker: [this.startdate, this.enddate],
}); });
this.list = [] this.list = []
this.SkipCount = '0' this.SkipCount = '0'
// this.getViolateRecgordList() this.getRecordList()
} }
//获取所有组织机构 //获取所有组织机构
nodes: any = [] nodes: any = []
async getAllOrganization() { async getAllOrganization() {
@ -101,7 +101,6 @@ export class AuditRecordComponent implements OnInit {
element.title = element.displayName element.title = element.displayName
}); });
this.nodes = [...this.toTree.toTree(data.result.items)] this.nodes = [...this.toTree.toTree(data.result.items)]
console.log('组织机构列表', this.nodes)
this.validateForm.patchValue({ this.validateForm.patchValue({
organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id,
datePicker: [this.startdate, this.enddate], datePicker: [this.startdate, this.enddate],
@ -148,48 +147,103 @@ export class AuditRecordComponent implements OnInit {
}); });
this.typeLoading = false this.typeLoading = false
this.typeList = arr this.typeList = arr
// console.log('证照类型', arr)
}).catch((error) => { }).catch((error) => {
console.log('证照类型', error)
}) })
} }
//历史记录列表 //历史记录列表
totalCount//列表总数 totalCount//列表总数
tableSpin = false tableSpin = false
SkipCount: string = '0'
MaxResultCount: string = '100'
getRecordList() { getRecordList() {
console.log('获得历史记录列表') this.tableSpin = true
let params = { let params = {
// Level: this.validateForm.value.level, IsContainsChildren: 'true',
// ViolationIds: ViolationIds, OrganizationUnitId: this.validateForm.value.organization,
// ViolateArea: this.validateForm.value.site, AuditTitle: this.validateForm.value.type,
// OrganizationUnitId: this.validateForm.value.organization, AuditType: this.validateForm.value.info,
// IsContainsChildren: 'true', StartTime: this.validateForm.value.datePicker[0],
// IsHandled: disposalState, EndTime: this.validateForm.value.datePicker[1],
// 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, AuditStatuses: this.validateForm.value.state,
// SkipCount: this.SkipCount, AuditLevel: this.validateForm.value.level,
// MaxResultCount: this.MaxResultCount, Sorting: null,
// Positive: this.validateForm.value.misinformation SkipCount: this.SkipCount,
MaxResultCount: this.MaxResultCount,
} }
// this.tableSpin = true this.http.get('/api/services/app/ContentAuditLog/GetHistory', {params}).subscribe((data: any) => {
// this.http.get('/api/services/app/ViolateRecord/GetAll', { this.list = this.list.concat(data.result.items);
// params: params this.list = [...this.list]
// }).subscribe((data: any) => { this.totalCount = data.result.totalCount
// this.list = this.list.concat(data.result.items); this.tableSpin = false
// this.list = [...this.list] console.log('审核历史纪录', this.list)
// this.totalCount = data.result.totalCount })
// console.log('违规记录列表', data) }
// this.tableSpin = false
// }) 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 { ngAfterViewInit(): void {
fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件 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 (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) {
if (this.totalCount > this.list.length) { if (this.totalCount > this.list.length) {
console.log('需要加载数据了', event)
this.SkipCount = String(Number(this.SkipCount) + 50) this.SkipCount = String(Number(this.SkipCount) + 50)
this.getRecordList() this.getRecordList()
} }

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

@ -89,12 +89,7 @@
<nz-timeline *ngIf="isDetails"> <nz-timeline *ngIf="isDetails">
<nz-timeline-item *ngFor="let item of auditList"> <nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span> <span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span *ngIf="item.auditStatus == 0"></span> <span>{{item.auditStatus | auditStatus}}</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>
</nz-timeline-item> </nz-timeline-item>
</nz-timeline> --> </nz-timeline> -->
</div> </div>

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

@ -29,12 +29,7 @@
<nz-timeline> <nz-timeline>
<nz-timeline-item *ngFor="let item of auditList"> <nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span> <span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span *ngIf="item.auditStatus == 0"></span> <span>{{item.auditStatus | auditStatus}}</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>
</nz-timeline-item> </nz-timeline-item>
</nz-timeline> </nz-timeline>
<ng-template #soccerTemplate> <ng-template #soccerTemplate>

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

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

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

@ -39,12 +39,7 @@
<nz-timeline> <nz-timeline>
<nz-timeline-item *ngFor="let item of auditList"> <nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span> <span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span *ngIf="item.auditStatus == 0"></span> <span>{{item.auditStatus | auditStatus}}</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>
</nz-timeline-item> </nz-timeline-item>
</nz-timeline> </nz-timeline>
<ng-template #soccerTemplate> <ng-template #soccerTemplate>

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

@ -36,12 +36,7 @@
<td><span *ngIf="item.isYearlyCheck"></span><span *ngIf="!item.isYearlyCheck"></span></td> <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>{{item.committedTime | date:"yyyy/MM/dd"}}<span *ngIf="!item.committedTime">未提交审核</span></td>
<td> <td>
<span *ngIf="item.auditStatus == 0"></span> <span>{{item.auditStatus | auditStatus}}</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>
<td> <td>
<span *ngIf="item.licenseViolationType == 0"></span> <span *ngIf="item.licenseViolationType == 0"></span>
@ -53,7 +48,7 @@
<span class="blueColor" (click)="edit(item)">编辑</span> <span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="details(item)">详情</span> <span class="blueColor" (click)="details(item)">详情</span>
<span class="blueColor" (click)="cancelReview(item)" *ngIf="item.auditStatus === 1">撤销审核</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> <span class="blueColor" *ngIf="item.auditStatus == 5">审核完成</span>
</td> </td>
</tr> </tr>

Loading…
Cancel
Save