diff --git a/src/app/pages/audit/annual-inspection/annual-inspection.component.html b/src/app/pages/audit/annual-inspection/annual-inspection.component.html new file mode 100644 index 0000000..b43c909 --- /dev/null +++ b/src/app/pages/audit/annual-inspection/annual-inspection.component.html @@ -0,0 +1,28 @@ +
+
+ + + + 审批类型 + 是否年检 + 年检时间 + 操作 + + + + + {{item.licenseName}} + + {{item.isYearlyCheck ? '是' : '否'}} + + {{item.yearlyCheckDate | date:"MM/dd"}} + + 编辑 + + + + + +
+
\ No newline at end of file diff --git a/src/app/pages/audit/annual-inspection/annual-inspection.component.scss b/src/app/pages/audit/annual-inspection/annual-inspection.component.scss new file mode 100644 index 0000000..aaca580 --- /dev/null +++ b/src/app/pages/audit/annual-inspection/annual-inspection.component.scss @@ -0,0 +1,15 @@ +.box { + width: 100%; + height: 100%; +} + +.tablebox { + width: 100%; + height: 100%; + + .operation { + span { + margin-right: 6px; + } + } +} diff --git a/src/app/pages/audit/annual-inspection/annual-inspection.component.ts b/src/app/pages/audit/annual-inspection/annual-inspection.component.ts new file mode 100644 index 0000000..9cd5035 --- /dev/null +++ b/src/app/pages/audit/annual-inspection/annual-inspection.component.ts @@ -0,0 +1,84 @@ +import { HttpClient } from '@angular/common/http'; +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 { EditAnnualInspectionComponent } from './edit-annual-inspection/edit-annual-inspection.component'; +@Component({ + selector: 'app-annual-inspection', + templateUrl: './annual-inspection.component.html', + styleUrls: ['./annual-inspection.component.scss'] +}) +export class AnnualInspectionComponent implements OnInit { + + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private http: HttpClient, private message: NzMessageService, private element: ElementRef) { } + tableSpin = false + + tableScrollHeight + ngOnInit(): void { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + }); + this.getAnnualInspectionList() + } + + + + list = [] + totalCount;//列表总数 + SkipCount: string = '0'; + MaxResultCount: string = '100'; + //获取当前油站档案类证照 + getAnnualInspectionList() { + this.tableSpin = true + let data = JSON.parse(sessionStorage.getItem('userdata')); + let params = { + OrganizationUnitId: data.organization.id || "", + IsContainsChildren: "true", + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + } + this.http.get(`/api/services/app/OrganizationValidityLicenseRule/GetCurOrgYearlyCheckRules`, { params }).subscribe((data: any) => { + + this.list = data.result + this.list = [...this.list] + this.tableSpin = false + console.log(data) + }) + } + + + edit(item) { + console.log('item', item) + if (!item.isYearlyCheck) { + this.message.create('warning', '不需要年检'); + return + } + + const modal = this.modal.create({ + nzContent: EditAnnualInspectionComponent, + 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 + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + this.getAnnualInspectionList() + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + } +} diff --git a/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.html b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.html new file mode 100644 index 0000000..e0eb4d0 --- /dev/null +++ b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.html @@ -0,0 +1,33 @@ +
+
+
+ 编辑 +
+ +
+
+ +
+
+

请选择年检日期

+ + + + + + + + +
+
+ + +
+ + +
+
+
\ No newline at end of file diff --git a/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.scss b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.scss new file mode 100644 index 0000000..4be1a5b --- /dev/null +++ b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.scss @@ -0,0 +1,105 @@ +.box { + .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; + } + } + + + + + p { + margin-bottom: 0; + color: #C4E2FC; + margin: 12px 0; + } + + .p2 { + margin: 6px 0; + font-size: 12px; + color: #C4E2FC; + } + + .form { + box-sizing: border-box; + padding: 0 17px; + + .timebox { + display: flex; + + div { + flex: 1; + display: flex; + flex-direction: column; + box-sizing: border-box; + padding: 0 6px; + } + } + + .explain { + box-sizing: border-box; + padding: 0 6px; + + textarea { + width: 100%; + height: 100px; + + background: rgba(145, 204, 255, 0.16); + color: #fff; + } + } + + .btnbox { + width: 100%; + margin-top: 24px; + margin-bottom: 17px; + display: flex; + justify-content: flex-end; + box-sizing: border-box; + padding: 0 7px; + + button { + border-radius: 0px; + color: #91CCFF; + } + + button:nth-child(2) { + margin-left: 16px; + } + + .ok { + background: rgba(0, 129, 255, 0.4); + } + + .cancel { + border: 1px solid #C4E2FC; + background: #0c1e38; + color: rgba(99, 102, 105, 0.6); + box-shadow: 0 0 3px 0 #fff inset; + } + } + } + +} diff --git a/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.ts b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.ts new file mode 100644 index 0000000..c2b330d --- /dev/null +++ b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.ts @@ -0,0 +1,64 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { HttpClient } from '@angular/common/http'; +import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; +import { NzMessageService } from 'ng-zorro-antd/message'; +import * as moment from 'moment'; + +@Component({ + selector: 'app-edit-annual-inspection', + templateUrl: './edit-annual-inspection.component.html', + styleUrls: ['./edit-annual-inspection.component.scss'] +}) +export class EditAnnualInspectionComponent implements OnInit { + + + @Input() data?: any; + + validateForm!: FormGroup; + constructor(private message: NzMessageService, private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } + + + dataCopy + ngOnInit(): void { + this.dataCopy = JSON.parse(JSON.stringify(this.data)) + this.validateForm = this.fb.group({ + time: [null, [Validators.required]], + }); + + } + + + destroyModal() { + this.modal.destroy({ data: 'this the result data' }); + + } + + + isLoading = false + ok() { + if (this.validateForm.valid) { + this.isLoading = true + let body = { + licenseTypeId: this.dataCopy.licenseTypeId, + organizationId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + yearlyCheckDate: moment(this.validateForm.value.time).format('YYYY-MM-MM')//开业时间格式化 + } + this.http.put('/api/services/app/OrganizationValidityLicenseRule/UpdateYearlyCheckDate', body).subscribe((data) => { + this.message.create('success', '修改成功'); + this.isLoading = false + this.modal.triggerOk() + }, err => { + this.message.create('error', '修改失败'); + this.isLoading = false + }) + } else { + this.message.create('warning', '请填写完整!'); + } + + + } + + dateFormat = 'MM/dd'; +} diff --git a/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html new file mode 100644 index 0000000..0ed286b --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html @@ -0,0 +1,30 @@ +
+
+
+ 详情 +
+ +
+ +
+

{{organizationName}}

+
+

+ 办理提醒时间:修改时间 {{data.handleRemindDays}}天 + 默认时间 {{data.handleRemindDaysDefault}}天 +

+
+

+ 临期提醒时间:修改时间 {{data.closingRemindDays}}天 + 默认时间 {{data.closingRemindDaysDefault}}天 +

+
+

修改说明:{{data.remark}}

+
+

审核状态:{{data.auditStatus | auditStatus}}

+
+

驳回说明:{{data.auditLog.rejectReason}}

+
+ + +
\ No newline at end of file diff --git a/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.scss b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.scss new file mode 100644 index 0000000..83c449f --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.scss @@ -0,0 +1,65 @@ +.box { + .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; + } + } + + .content { + box-sizing: border-box; + padding: 0 15px; + max-height: 580px; + overflow-y: auto; + + .circle { + width: 8px; + height: 8px; + background: linear-gradient(180deg, #36A2FF 0%, #FFFFFF 100%); + opacity: 1; + } + + .recordP { + display: flex; + justify-content: space-between; + align-items: center; + } + } + + p { + margin-bottom: 0; + color: #C4E2FC; + margin: 12px 0; + + img { + width: 88px; + height: 56px; + cursor: pointer; + } + } + .flexp{ + display: flex; + justify-content: space-between; + } +} diff --git a/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts new file mode 100644 index 0000000..d2d65a2 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts @@ -0,0 +1,22 @@ +import { Component, Input, OnInit } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; + +@Component({ + selector: 'app-audit-details-inform-time', + templateUrl: './audit-details-inform-time.component.html', + styleUrls: ['./audit-details-inform-time.component.scss'] +}) +export class AuditDetailsInformTimeComponent implements OnInit { + @Input() data?: any; + constructor(private modal: NzModalRef) { } + + + organizationName + ngOnInit(): void { + + this.organizationName = JSON.parse(sessionStorage.getItem('userdata')).organization.displayName + } + destroyModal() { + this.modal.destroy({ data: 'this the result data' }); + } +} diff --git a/src/app/pages/audit/audit-inform-time/audit-inform-time.component.html b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.html new file mode 100644 index 0000000..aadc2ca --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.html @@ -0,0 +1,46 @@ +
+
+ + + + + 审批类型 + + 办理提醒时间 + 临期提醒时间 + 提交审核时间 + 审核状态 + 操作 + + + 默认时间 + 现用时间 + 默认时间 + 现用时间 + + + + + + {{item.licenseName}} + + {{item.handleRemindDaysDefault}}天 + {{item.handleRemindDays}}天 + {{item.closingRemindDaysDefault}}天 + {{item.closingRemindDays}}天 + {{(item.auditLog && item.auditLog.committedTime) ? (item.auditLog.committedTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}} + {{item.auditStatus | auditStatus}} + + 编辑 + 撤销审核 + 审核详情 + + + + + +
+
\ No newline at end of file diff --git a/src/app/pages/audit/audit-inform-time/audit-inform-time.component.scss b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.scss new file mode 100644 index 0000000..aaca580 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.scss @@ -0,0 +1,15 @@ +.box { + width: 100%; + height: 100%; +} + +.tablebox { + width: 100%; + height: 100%; + + .operation { + span { + margin-right: 6px; + } + } +} diff --git a/src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts new file mode 100644 index 0000000..fe83c75 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts @@ -0,0 +1,130 @@ +import { HttpClient } from '@angular/common/http'; +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 { AuditDetailsInformTimeComponent } from './audit-details-inform-time/audit-details-inform-time.component'; +import { EditInformTimeComponent } from './edit-inform-time/edit-inform-time.component'; +// import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; + +@Component({ + selector: 'app-audit-inform-time', + templateUrl: './audit-inform-time.component.html', + styleUrls: ['./audit-inform-time.component.scss'] +}) +export class AuditInformTimeComponent implements OnInit { + + constructor(private message: NzMessageService, private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } + tableSpin = false + list = [] + + tableScrollHeight + ngOnInit(): void { + // 页面监听 + this.tableScrollHeight = '0px' + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader) + 'px' + }); + + this.getTimeList() + } + + SkipCount: string = '0' + MaxResultCount: string = '100' + async getTimeList() { + let params = { + OrganizationUnitId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + IsContainsChildren: 'true', + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + } + this.tableSpin = true + await new Promise((resolve, reject) => { + this.http.get('/api/services/app/OrganizationValidityLicenseRule/GetCurOrgRules', { + params: params + }).subscribe((data: any) => { + this.list = data.result + this.list = [...this.list] + console.log('时间表格', data) + this.tableSpin = false + + setTimeout(() => { + let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader) + 'px' + }, 0); + resolve(data) + }) + }) + } + + + edit(item) { + console.log('item', item) + if (item.auditStatus == 1) { + this.message.create('warning', '审核中不允许编辑'); + return + } + + const modal = this.modal.create({ + nzContent: EditInformTimeComponent, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 600, + 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 + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + this.getTimeList() + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + } + details(item) { + console.log('item', item) + const modal = this.modal.create({ + nzContent: AuditDetailsInformTimeComponent, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 650, + 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 + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + } + + unCommit(item) { + let params = { + id: item.id + } + this.http.post('/api/services/app/OrganizationValidityLicenseRule/Uncommit', '', { params: params }).subscribe((data) => { + this.message.create('success', '撤销审核成功'); + this.getTimeList() + }, err => { + this.message.create('error', '撤销审核失败'); + }) + } +} diff --git a/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html new file mode 100644 index 0000000..176eade --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html @@ -0,0 +1,54 @@ +
+
+
+ 编辑 +
+ +
+
+ +
+
+

办理提醒时间

+ + + + + + + + + +

默认时间: 90天

+
+
+

临期提醒时间

+ + + + + + + + + +

默认时间: 30天

+
+
+
+

修改说明

+ + + + + + +
+ + +
+ + +
+
+
\ No newline at end of file diff --git a/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss new file mode 100644 index 0000000..4be1a5b --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss @@ -0,0 +1,105 @@ +.box { + .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; + } + } + + + + + p { + margin-bottom: 0; + color: #C4E2FC; + margin: 12px 0; + } + + .p2 { + margin: 6px 0; + font-size: 12px; + color: #C4E2FC; + } + + .form { + box-sizing: border-box; + padding: 0 17px; + + .timebox { + display: flex; + + div { + flex: 1; + display: flex; + flex-direction: column; + box-sizing: border-box; + padding: 0 6px; + } + } + + .explain { + box-sizing: border-box; + padding: 0 6px; + + textarea { + width: 100%; + height: 100px; + + background: rgba(145, 204, 255, 0.16); + color: #fff; + } + } + + .btnbox { + width: 100%; + margin-top: 24px; + margin-bottom: 17px; + display: flex; + justify-content: flex-end; + box-sizing: border-box; + padding: 0 7px; + + button { + border-radius: 0px; + color: #91CCFF; + } + + button:nth-child(2) { + margin-left: 16px; + } + + .ok { + background: rgba(0, 129, 255, 0.4); + } + + .cancel { + border: 1px solid #C4E2FC; + background: #0c1e38; + color: rgba(99, 102, 105, 0.6); + box-shadow: 0 0 3px 0 #fff inset; + } + } + } + +} diff --git a/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts new file mode 100644 index 0000000..3e4b643 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts @@ -0,0 +1,67 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { HttpClient } from '@angular/common/http'; +import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; +import { NzMessageService } from 'ng-zorro-antd/message'; +@Component({ + selector: 'app-edit-inform-time', + templateUrl: './edit-inform-time.component.html', + styleUrls: ['./edit-inform-time.component.scss'] +}) +export class EditInformTimeComponent implements OnInit { + + @Input() data?: any; + + validateForm!: FormGroup; + constructor(private message: NzMessageService, private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } + + + dataCopy + ngOnInit(): void { + this.dataCopy = JSON.parse(JSON.stringify(this.data)) + this.validateForm = this.fb.group({ + time1: [this.dataCopy.handleRemindDays, [Validators.required]], + time2: [this.dataCopy.closingRemindDays, [Validators.required]], + explain: [null] + }); + + } + + + destroyModal() { + this.modal.destroy({ data: 'this the result data' }); + + } + + + isLoading = false + ok() { + if (this.validateForm.valid) { + this.isLoading = true + let body = { + licenseTypeId: this.dataCopy.licenseTypeId, + organizationId: this.dataCopy.organizationId, + handleRemindDays: this.validateForm.value.time1, + closingRemindDays: this.validateForm.value.time2, + remark: this.validateForm.value.explain + } + console.log(body) + this.http.put('/api/services/app/OrganizationValidityLicenseRule/UpdateAndCommit', body).subscribe((data) => { + console.log('提交审核成功') + this.message.create('success', '提交审核成功'); + this.isLoading = false + this.modal.triggerOk() + }, err => { + this.message.create('error', '提交审核失败'); + this.isLoading = false + }) + } else { + this.message.create('warning', '请填写完整!'); + } + + + } + + +} diff --git a/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html new file mode 100644 index 0000000..82c9c24 --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html @@ -0,0 +1,59 @@ +
+
+
+ 处置 +
+ +
+ +
+

{{data.gasStation.companyName}} - {{data.gasStation.locationName}} - {{data.gasStation.stationName}}

+
+
+
+

+ 办理提醒时间:修改时间   {{data.getData.handleRemindDays}}天 + 默认时间 {{data.getData.handleRemindDaysDefault}}天 +

+
+

+ 临期提醒时间:修改时间   {{data.getData.closingRemindDays}}天 + 默认时间 {{data.getData.closingRemindDaysDefault}}天 +

+
+

修改说明:   {{data.getData.remark}}

+
+
+

证件名称:   {{data.getData.licenseTypeName}}

+
+

证件编号:   {{data.getData.licenseCode || ''}}

+
+

证件有效期:   {{data.getData.validityStartTime | date:"yyyy/MM/dd"}} - {{data.getData.validityEndTime | date:"yyyy/MM/dd"}}

+
+

办理类型:   {{getHandleTypes(data.getData.handleTypes)}}

+
+

有效期类型:   {{data.getData.validityDays || 0}}天

+
+

是否年检:   

+
+
+

证件名称:   {{data.getData.licenseTypeName}}

+
+

有效期类型:   不适用

+
+
+

证件图片:    + + + +

+

审批意见:

+ +
+ + +
+
+ + +
\ No newline at end of file diff --git a/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.scss b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.scss new file mode 100644 index 0000000..b951afb --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.scss @@ -0,0 +1,91 @@ +.box { + .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; + } + } + + .content { + box-sizing: border-box; + padding: 0 15px; + // max-height: 580px; + // overflow-y: auto; + + .circle { + width: 8px; + height: 8px; + background: linear-gradient(180deg, #36A2FF 0%, #FFFFFF 100%); + opacity: 1; + } + + .recordP { + display: flex; + justify-content: space-between; + align-items: center; + } + + .btnbox { + width: 100%; + margin: 10px 0; + display: flex; + justify-content: flex-end; + + button { + border-radius: 0px; + color: #91CCFF; + } + + button:nth-child(2) { + margin-left: 16px; + } + + .ok { + + background: rgba(0, 129, 255, 0.24); + } + + .cancel { + border: 1px solid #C4E2FC; + + background: rgba(255, 75, 101, 0.24); + + color: #C4E2FC; + // box-shadow: 0 0 3px 0 #fff inset; + } + } + } + + p { + margin-bottom: 0; + color: #C4E2FC; + margin: 12px 0; + + img { + width: 88px; + height: 56px; + cursor: pointer; + } + } +} diff --git a/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts new file mode 100644 index 0000000..e09e7cd --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts @@ -0,0 +1,102 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { HttpClient } from '@angular/common/http'; +import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; +import Viewer from 'viewerjs'; +import { NzMessageService } from 'ng-zorro-antd/message'; +import { handleType, handleTypeList } from 'src/app/pages/license/update-category/edit-update-category/edit-update-category.component'; + + +@Component({ + selector: 'app-audit-dispose', + templateUrl: './audit-dispose.component.html', + styleUrls: ['./audit-dispose.component.scss'] +}) +export class AuditDisposeComponent implements OnInit { + + @Input() data?: any; + constructor(private modal: NzModalRef, private message: NzMessageService) { } + + textarea: string = ""; //审批意见 + ngOnInit(): void { + console.log(this.data) + } + + + destroyModal() { + this.modal.destroy(); + } + + isPass: boolean; + ok(isPass: boolean) { + this.isPass = isPass; + this.modal.triggerOk() + } + + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let names: string[] = [] + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? names.push(element.name) : null + }) + }) + return names.join(',') + } + + //获取文件格式 + getFileType(name: string):string { + let suffix + if (name.substring(name.length-4).includes('png') || name.substring(name.length-4).includes('jpg') || name.substring(name.length-4).includes('jpeg') || name.substring(name.length-4).includes('webp')) { + suffix = 'img' + } else if (name.substring(name.length-4).includes('doc') || name.substring(name.length-4).includes('docx')) { + suffix = 'word' + } else if (name.substring(name.length-4).includes('pdf')) { + suffix = 'pdf' + } + return suffix + } + + //查看图片 + viewImg(url) { + let dom = document.getElementById(`viewerjs`) + let pObjs = dom.childNodes; + let node = document.createElement("img") + node.style.display = "none"; + node.src = url; + node.id = 'img' + dom.appendChild(node) + setTimeout(() => { + let viewer = new Viewer(document.getElementById(`viewerjs`), { + hidden: () => { + dom.removeChild(pObjs[0]); + viewer.destroy(); + } + }); + node.click(); + }, 0); + } + + //查看文件 + lookFile(item) { + if (!item.imageUrl) { + return + } + if (this.getFileType(item.imageUrl) == 'word') { + let arr = item.imageUrl.split('.') + arr[arr.length - 1] = 'pdf' + window.open(arr.join('.')) + } else if (this.getFileType(item.imageUrl) == 'pdf') { + window.open(item.imageUrl) + } else { + this.message.create('warning', '暂不支持查看!'); + } + } + +} diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.html b/src/app/pages/audit/audit-ing/audit-ing.component.html new file mode 100644 index 0000000..558691e --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -0,0 +1,44 @@ +
+
+ + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + 操作 + + + + + + {{item.auditTitle || ''}} + + + 油站信息 + 更新类证照提醒时间 + 更新类证照 + 档案类证照 + + + + + {{item.committedTime | date:"yyyy/MM/dd"}} + {{item.auditStatusDesc}} + + 处置 + 详情 + + + + + +
+
\ No newline at end of file diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.scss b/src/app/pages/audit/audit-ing/audit-ing.component.scss new file mode 100644 index 0000000..aaca580 --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-ing.component.scss @@ -0,0 +1,15 @@ +.box { + width: 100%; + height: 100%; +} + +.tablebox { + width: 100%; + height: 100%; + + .operation { + span { + margin-right: 6px; + } + } +} diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts new file mode 100644 index 0000000..03f20df --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -0,0 +1,188 @@ +import { HttpClient } from '@angular/common/http'; +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'; + +@Component({ + selector: 'app-audit-ing', + templateUrl: './audit-ing.component.html', + styleUrls: ['./audit-ing.component.scss'] +}) +export class AuditIngComponent implements OnInit { + + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService,private element: ElementRef) { } + tableSpin = false + + tableScrollHeight + ngOnInit(): void { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + }); + 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 = [] + totalCount;//列表总数 + SkipCount: string = '0'; + MaxResultCount: string = '100'; + //获取当前油站档案类证照 + getStationList() { + this.tableSpin = true + let data = JSON.parse(sessionStorage.getItem('userdata')); + let params = { + OrganizationUnitId: data.organization.id || "" , + IsContainsChildren: "true", + AuditStatuses: "1", + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + } + this.http.get(`/api/services/app/ContentAuditLog/GetAuditting`,{params}).subscribe((info: any)=>{ + info.result.items.forEach(element => { + element.itemData = JSON.parse(element.itemData) + }); + this.list = this.list.concat(info.result.items); + this.list = [...this.list] + this.totalCount = info.result.totalCount + this.tableSpin = false + console.log(this.list) + }) + } + + + + dispose(item) { + // if (item.auditStatus != 1) { + // return + // } + this.getData(item).then(res=>{ + item.getData = res + const modal = this.modal.create({ + nzContent: AuditDisposeComponent, + nzViewContainerRef: this.viewContainerRef, + nzWidth: item.auditType == 0? 700 : 600, + 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 + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + await new Promise(resolve => { + let url + if (item.auditType == 0) { + url = '/api/services/app/GasStation/Audit' + } else if (item.auditType == 1) { + url = '/api/services/app/OrganizationValidityLicenseRule/Audit' + } else if (item.auditType == 2) { + url = '/api/services/app/StationValidityLicense/Audit' + } else if (item.auditType) { + url = '/api/services/app/StationFileLicense/Audit' + } + let params = { + id: item.auditType == 0? item.gasStation.id : item.getData.id, + remark: instance.textarea + } + let body = instance.isPass? 2 : 3; + this.http.post(url,body,{params}).subscribe(data => { + resolve(data); + this.getStationList(); + this.message.create('success', '审核完成!'); + return true + }) + }) + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + }) + } + + 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) + }) + }) + } + +} diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.html b/src/app/pages/audit/audit-nav/audit-nav.component.html new file mode 100644 index 0000000..49f53ab --- /dev/null +++ b/src/app/pages/audit/audit-nav/audit-nav.component.html @@ -0,0 +1,23 @@ +
+
+
+ + +
+
+
+ + + + +
+
\ No newline at end of file diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.scss b/src/app/pages/audit/audit-nav/audit-nav.component.scss new file mode 100644 index 0000000..454084c --- /dev/null +++ b/src/app/pages/audit/audit-nav/audit-nav.component.scss @@ -0,0 +1,76 @@ +.audit { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.title { + width: 100%; + height: 64px; + box-sizing: border-box; + padding: 0 28px; + margin: 13px 0; + position: relative; + + .titlebox { + width: 100%; + height: 100%; + display: flex; + align-items: center; + + img { + width: 65px; + height: 65px; + } + + .nav { + flex: 1; + height: 48px; + display: flex; + align-items: center; + justify-content: center; + // background-image: linear-gradient(to right, #002147, #033565, #064e8e, #064e8e, #033565, #002147); + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.32) 50%, rgba(35, 153, 255, 0) 100%); + + .navitem { + width: 100%; + height: 32px; + display: flex; + align-items: center; + // background-image: linear-gradient(to right, #002147, #0f5ca0, #1c88e6, #1c88e6, #0f5ca0, #002147); + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.8) 50%, rgba(35, 153, 255, 0) 100%); + + span { + margin-left: 25px; + color: #bce0ff; + font-size: 20px; + font-family: titlefont; + cursor: pointer; + } + + span:nth-child(1) { + margin-left: 12px; + } + + .grey { + color: #68829F; + } + } + + } + } + + .packup { + position: absolute; + right: 33px; + top: 16px; + cursor: pointer; + } +} + +.content { + flex: 1; + box-sizing: border-box; + padding: 0 40px 20px 40px; +} diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.ts b/src/app/pages/audit/audit-nav/audit-nav.component.ts new file mode 100644 index 0000000..08f23b6 --- /dev/null +++ b/src/app/pages/audit/audit-nav/audit-nav.component.ts @@ -0,0 +1,25 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-audit-nav', + templateUrl: './audit-nav.component.html', + styleUrls: ['./audit-nav.component.scss'] +}) +export class AuditNavComponent implements OnInit { + + constructor() { } + + + navList = ['审批', '历史纪录'] + selectedItem = '审批' + selectNav(item) { + this.selectedItem = item + } + + + isLevel + ngOnInit(): void { + this.isLevel = JSON.parse(sessionStorage.getItem('userdata')).organization.level + } + +} diff --git a/src/app/pages/audit/audit-record/audit-record.component.html b/src/app/pages/audit/audit-record/audit-record.component.html new file mode 100644 index 0000000..a2c5cad --- /dev/null +++ b/src/app/pages/audit/audit-record/audit-record.component.html @@ -0,0 +1,127 @@ +
+ +
+ + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + 操作 + + + + + + {{item.auditTitle || ''}} + + + 油站信息 + 更新类证照提醒时间 + 更新类证照 + 档案类证照 + + + + + {{item.committedTime | date:"yyyy/MM/dd"}} + {{item.auditStatusDesc}} + + 详情 + + + + + +
+
\ No newline at end of file diff --git a/src/app/pages/audit/audit-record/audit-record.component.scss b/src/app/pages/audit/audit-record/audit-record.component.scss new file mode 100644 index 0000000..8daef6d --- /dev/null +++ b/src/app/pages/audit/audit-record/audit-record.component.scss @@ -0,0 +1,67 @@ +.box { + width: 100%; + height: 100%; +} + +.search { + box-sizing: border-box; + width: 100%; + height: 32px; + margin-bottom: 16px; + + form { + width: 100%; + height: 32px; + display: flex; + justify-content: flex-start; + + .searchParams, + .btn { + margin: 0 3px; + } + + .searchParams { + // flex: 5; + width: 150px; + } + + .searchParamsLong { + width: 250px; + } + + .searchParams2 { + width: 220px; + } + + .btn { + // flex: 1; + } + + nz-select { + color: rgba(145, 204, 255, 0.95); + } + + nz-tree-select { + color: rgba(145, 204, 255, 0.95); + } + + nz-range-picker { + background-color: rgba(0, 0, 0, 0); + width: 100%; + } + + } + + +} + +.tablebox { + width: 100%; + height: 100%; + + .operation { + span { + margin-right: 6px; + } + } +} diff --git a/src/app/pages/audit/audit-record/audit-record.component.ts b/src/app/pages/audit/audit-record/audit-record.component.ts new file mode 100644 index 0000000..584be47 --- /dev/null +++ b/src/app/pages/audit/audit-record/audit-record.component.ts @@ -0,0 +1,253 @@ +import { HttpClient } from '@angular/common/http'; +import { Component, ElementRef, OnInit, ViewContainerRef } from '@angular/core'; +import { FormBuilder, FormGroup } from '@angular/forms'; +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', + styleUrls: ['./audit-record.component.scss'] +}) +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 = [] + + tableScrollHeight + startdate + enddate + async ngOnInit(): Promise { + this.validateForm = this.fb.group({ + type: [null], + info: [null], + organization: [null], + datePicker: [null], + level: [null], + state: [null], + }); + //当前日期 + let myDate: any = new Date(); + let nowY = myDate.getFullYear(); + let nowM = myDate.getMonth() + 1; + let nowD = myDate.getDate(); + this.enddate = nowY + "-" + (nowM < 10 ? "0" + nowM : nowM) + "-" + (nowD < 10 ? "0" + nowD : nowD);//当前日期 + //获取三十天前日期 + let lw = new Date(myDate - 1000 * 60 * 60 * 24 * 30);//最后一个数字30可改,30天的意思 + let lastY = lw.getFullYear(); + let lastM = lw.getMonth() + 1; + 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) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + }); + + this.getTypeList() + await this.getAllOrganization() + this.getRecordList() + } + + submitForm(): void { + 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() + } + + resetForm(e: MouseEvent): void { + e.preventDefault(); + this.validateForm.reset(); + this.validateForm.patchValue({ + organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + datePicker: [this.startdate, this.enddate], + }); + this.list = [] + this.SkipCount = '0' + this.getRecordList() + } + + //获取所有组织机构 + nodes: any = [] + async getAllOrganization() { + let OrganizationUnitId = JSON.parse(sessionStorage.getItem('userdata')).organization.id + let params = { + OrganizationUnitId: OrganizationUnitId, + IsContainsChildren: "true" + } + await new Promise((resolve, reject) => { + this.http.get('/api/services/app/Organization/GetAll', { + params: params + }).subscribe((data: any) => { + data.result.items.forEach(element => { + if (element.id == OrganizationUnitId) { + element.parentId = null + } + element.key = element.id + element.title = element.displayName + }); + this.nodes = [...this.toTree.toTree(data.result.items)] + this.validateForm.patchValue({ + organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + datePicker: [this.startdate, this.enddate], + }); + resolve(data) + + }) + }) + + } + + //证照类型 + typeLoading + typeList + getTypeList() { + this.typeLoading = true + let promiseArr = [] + let api = ['/api/services/app/ValidityLicenseType/GetAll', '/api/services/app/FileLicenseType/GetAll'] + api.forEach(element => { + promiseArr.push( + new Promise((resolve, reject) => { + this.http.get(element, { + params: { + SkipCount: '0', + MaxResultCount: '999' + } + }).subscribe({ + next: (data) => { + resolve(data) + }, + error: err => { + reject(err) + } + }) + }) + ) + }); + + Promise.all(promiseArr).then((result) => { + + let arr = [{ licenseName: '油站信息' }] + result.forEach(item => { + arr = arr.concat(item.result.items) + }); + this.typeLoading = false + this.typeList = arr + }).catch((error) => { + + }) + } + + //历史记录列表 + totalCount//列表总数 + tableSpin = true + SkipCount: string = '0' + MaxResultCount: string = '100' + getRecordList() { + this.tableSpin = true + let params = { + 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.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) { + this.SkipCount = String(Number(this.SkipCount) + 50) + this.getRecordList() + } + } + }); + } +} diff --git a/src/app/pages/audit/gas-base-info/gas-base-info.component.html b/src/app/pages/audit/gas-base-info/gas-base-info.component.html new file mode 100644 index 0000000..462e684 --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.html @@ -0,0 +1,95 @@ +
+
+
+ 详情 +
+ +
+ +

+ + +

+
+

+ + +

+
+

地址:   {{baseInfo.address}}

+
+

+ + +

+
+

+ + +

+
+

+ + +

+
+

+ + +

+
+
+

+ + +

+
+

+ + +

+
+
+
+

+ + +

+
+

+ + +

+
+
+
+

+ + +

+
+

+ + +

+
+
+ + +
diff --git a/src/app/pages/audit/gas-base-info/gas-base-info.component.scss b/src/app/pages/audit/gas-base-info/gas-base-info.component.scss new file mode 100644 index 0000000..8604584 --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.scss @@ -0,0 +1,47 @@ +p { + margin-bottom: 0; + color: #C4E2FC; + margin: 10px 0; + img { + width: 88px; + height: 56px; + cursor: pointer; + } +} +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; +} \ No newline at end of file diff --git a/src/app/pages/audit/gas-base-info/gas-base-info.component.ts b/src/app/pages/audit/gas-base-info/gas-base-info.component.ts new file mode 100644 index 0000000..187e5e6 --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.ts @@ -0,0 +1,64 @@ +import { HttpClient } from '@angular/common/http'; +import { Component, Input, OnInit } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; + +@Component({ + selector: 'app-gas-base-info', + templateUrl: './gas-base-info.component.html', + styleUrls: ['./gas-base-info.component.scss'] +}) +export class GasBaseInfoComponent implements OnInit { + + constructor(private modal: NzModalRef,private http: HttpClient) { } + + @Input() data?: any; + isDetails: boolean = false; //是否是详情 + + ngOnInit(): void { + if (this.data.id === undefined) { //详情 + this.isDetails = true + //this.getAuditLogging() + } + this.getBaseInfo() + } + + baseInfo: any = { + stationType: null, + } + getBaseInfo() { + let params = { organizationUnitId: this.data.organizationId } + this.http.get('/api/services/app/GasStation/Get',{params}).subscribe((data: any)=>{ + data.result.govUnitDetail? data.result.govUnitDetail = JSON.parse(data.result.govUnitDetail) : null; + this.baseInfo = data.result + }) + } + + 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 + } + +} diff --git a/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts b/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts index 0a4efee..35205b6 100644 --- a/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts +++ b/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts @@ -480,7 +480,7 @@ export class CriminalRecordsAdminComponent implements OnInit { Level: this.validateForm.value.level, ViolationIds: ViolationIds, ViolateArea: this.validateForm.value.site, - OrganizationUnitId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + 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, diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index e0a1bcd..a99a790 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -19,6 +19,9 @@
  • 预警记录
  • +
  • + 审批 +
  • @@ -30,9 +33,9 @@
  • 预警记录
  • - +
    diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts index 59f3030..ee6b0e1 100644 --- a/src/app/pages/home/home.component.ts +++ b/src/app/pages/home/home.component.ts @@ -61,7 +61,7 @@ export class HomeComponent implements OnInit { if (sessionStorage.getItem('isGasStation') == 'true') { this.isGasStation = true this.isGasStationNav = true - } + } this.router.events.pipe( filter(event => event instanceof NavigationEnd) @@ -70,7 +70,6 @@ export class HomeComponent implements OnInit { this.isGasStationNav = true this.isGasStationBack = true } else { - this.isGasStationNav = false this.isGasStationBack = false } }); @@ -148,6 +147,8 @@ export class HomeComponent implements OnInit { SignalRAspNetCoreHelper.initSignalR(); abp.event.on('abp.notifications.received', this.reloadPage); } + + //右下角消息弹窗 messageId = [] receiptOfNotification(userNotification) { let obj = { @@ -303,7 +304,6 @@ export class HomeComponent implements OnInit { }) } close(item) { - // console.log(item) this.messageId.forEach((element) => { if (element.id == item.notification.entityId) { this.notificationService.remove(element.messageId) diff --git a/src/app/pages/license/file-category/details-file-category/details-file-category.component.html b/src/app/pages/license/file-category/details-file-category/details-file-category.component.html index fc1520f..ff37dda 100644 --- a/src/app/pages/license/file-category/details-file-category/details-file-category.component.html +++ b/src/app/pages/license/file-category/details-file-category/details-file-category.component.html @@ -9,7 +9,7 @@

    证件名称:   {{data.licenseTypeName}}

    -

    有效期类型:   不适用

    +

    有效期类型:   不适用

    @@ -29,12 +29,7 @@ {{item.creationTime | date:"yyyy/MM/dd"}} - - 审核中 - 审核通过 - 审核驳回 - 已撤销审核 - 审核完成 + {{item.auditStatus | auditStatus}} diff --git a/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts b/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts index d6a6737..fe9d27d 100644 --- a/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts +++ b/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts @@ -22,7 +22,7 @@ export class DetailsFileCategoryComponent implements OnInit { auditList: any[] = []; //获取审核记录 getAuditLogging() { - if (this.data.auditLogId == 0) { + if (!this.data.auditLogId) { return } let params = { id: this.data.auditLogId } diff --git a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html index a6d5ad0..ea06c5b 100644 --- a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html +++ b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html @@ -15,9 +15,9 @@ - + - + @@ -26,12 +26,12 @@
    - - -
    -
    +
    diff --git a/src/app/pages/license/file-category/file-category.component.html b/src/app/pages/license/file-category/file-category.component.html index 2d5eec8..5ad7f2b 100644 --- a/src/app/pages/license/file-category/file-category.component.html +++ b/src/app/pages/license/file-category/file-category.component.html @@ -20,27 +20,23 @@ {{item.licenseTypeName || ''}} - + 不适用 - 不适用 + {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 - - 审核中 - 审核通过 - 审核驳回 - 未提交审核 - 审核完成 + {{item.auditStatus | auditStatus}} 编辑 详情 撤销审核 - 提交审核 + 提交审核 + 审核完成 diff --git a/src/app/pages/license/file-category/file-category.component.ts b/src/app/pages/license/file-category/file-category.component.ts index 4af5b3e..e841d20 100644 --- a/src/app/pages/license/file-category/file-category.component.ts +++ b/src/app/pages/license/file-category/file-category.component.ts @@ -31,10 +31,12 @@ export class FileCategoryComponent implements OnInit { //获取当前油站档案类证照 getStationList() { + this.tableSpin = true let data = JSON.parse(sessionStorage.getItem('userdataOfgasstation')); let params = { orgId: data.organization.id || "" } - this.http.get(`/api/services/app/StationFileLicense/GetStationList`,{params}).subscribe((info: any)=>{ + this.http.get(`/api/services/app/StationFileLicense/GetStationList`, { params }).subscribe((info: any) => { this.list = info.result + this.tableSpin = false console.log(info.result) }) } @@ -121,18 +123,21 @@ export class FileCategoryComponent implements OnInit { } //提交审核 - submitReview(item){ + submitReview(item) { + if (!item.id) { + return + } let params = { id: item.id } - this.http.post('/api/services/app/StationFileLicense/Commit', {},{params}).subscribe(data => { + this.http.post('/api/services/app/StationFileLicense/Commit', {}, { params }).subscribe(data => { this.message.create('success', '提交审核成功!'); this.getStationList(); }) } //撤销审核 - cancelReview(item){ + cancelReview(item) { let params = { id: item.id } - this.http.post('/api/services/app/StationFileLicense/Uncommit', {},{params}).subscribe(data => { + this.http.post('/api/services/app/StationFileLicense/Uncommit', {}, { params }).subscribe(data => { this.message.create('success', '撤销审核成功!'); this.getStationList(); }) diff --git a/src/app/pages/license/histories/histories.component.html b/src/app/pages/license/histories/histories.component.html index 5f8b95f..3dcfc90 100644 --- a/src/app/pages/license/histories/histories.component.html +++ b/src/app/pages/license/histories/histories.component.html @@ -5,7 +5,7 @@ - 证件名称 + 证件名称 证件编号 证件有效期 @@ -20,17 +20,26 @@ - 证件名称 + {{item.licenseSnapshot.validityLicenseType.licenseName}} - 证件编号 - 证件有效期 - 有效期类型 - 办理类型 - 通知内容 - 通知状态 - 处置状态 + {{item.licenseSnapshot.licenseCode}} + {{item.licenseSnapshot.validityEndTime | date:"yyyy/MM/dd"}} + + + 长期 + + + {{item.licenseSnapshot.validityDays ? item.licenseSnapshot.validityDays+'天' : '/'}} + + + {{getHandleTypes(item.handleTypes)}} + {{item.notificationContent | notificationContent}} + + {{item.licenseSnapshot.licenseViolationType | licenseViolationType}} + {{item.handleState | handleState}} - 详情 + 详情 diff --git a/src/app/pages/license/histories/histories.component.ts b/src/app/pages/license/histories/histories.component.ts index 48dffe3..8600679 100644 --- a/src/app/pages/license/histories/histories.component.ts +++ b/src/app/pages/license/histories/histories.component.ts @@ -1,16 +1,22 @@ -import { Component, OnInit } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { Component, 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 { DetailsUpdateCategoryComponent } from '../update-category/details-update-category/details-update-category.component'; @Component({ selector: 'app-histories', templateUrl: './histories.component.html', styleUrls: ['./histories.component.scss'] }) + + export class HistoriesComponent implements OnInit { - constructor() { } + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private http: HttpClient, private message: NzMessageService) { } tableSpin = false - 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 ngOnInit(): void { @@ -19,14 +25,99 @@ export class HistoriesComponent implements OnInit { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' }); + + + this.getInform() } + dispose() { + console.log('处置') + } + //获取当前油站通知 + SkipCount = '0' + MaxResultCount = '999' + getInform() { + this.tableSpin = true + let data = JSON.parse(sessionStorage.getItem('userdataOfgasstation')); + let params: any = { + OrganizationUnitId: data.organization.id || "", + Active: false, + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount + } + this.http.get(`/api/services/app/StationValidityLicenseNotificationRecord/GetAll`, { params: params }).subscribe((data: any) => { + this.list = data.result.items + this.tableSpin = false + console.log(data.result.items) + }) + } - dispose() { - console.log('处置') + //获取办理类型 + getHandleTypes(handleTypes: any[]): string { + if (!handleTypes || !handleTypes.length) { + return + } + let names: string[] = [] + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item => { + list.find(element => { + item == element.value ? names.push(element.name) : null + }) + }) + return names.join(',') } + + + //处置 + details(item) { + const modal = this.modal.create({ + nzContent: DetailsUpdateCategoryComponent, + 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.licenseSnapshot + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + } + +} + + +//办理类型 +export class handleType { + list: handleTypeList[] = [ + { value: 0, name: "无" }, + { value: 1, name: "年度公示" }, + { value: 2, name: "年检" }, + { value: 3, name: "到期换证" }, + { value: 4, name: "年度执行报告" }, + { value: 5, name: "到期检测" }, + { value: 6, name: "年度复训" }, + { value: 7, name: "年度检测" }, + { value: 8, name: "到期备案" }, + { value: 9, name: "到期评价" }, + ] } +export class handleTypeList { + value: number + name: string +} \ No newline at end of file diff --git a/src/app/pages/license/inform/inform.component.html b/src/app/pages/license/inform/inform.component.html index aff191f..f77cf12 100644 --- a/src/app/pages/license/inform/inform.component.html +++ b/src/app/pages/license/inform/inform.component.html @@ -5,7 +5,7 @@ - 证件名称 + 证件名称 证件编号 证件有效期 @@ -20,19 +20,28 @@ - 证件名称 + {{item.licenseSnapshot.validityLicenseType.licenseName}} - 证件编号 - 证件有效期 - 有效期类型 - 办理类型 - 通知内容 - 通知状态 - 处置状态 + {{item.licenseSnapshot.licenseCode}} + {{item.licenseSnapshot.validityEndTime | date:"yyyy/MM/dd"}} + + + 长期 + + + {{item.licenseSnapshot.validityDays ? item.licenseSnapshot.validityDays+'天' : '/'}} + + + {{getHandleTypes(item.handleTypes)}} + {{item.notificationContent | notificationContent}} + + {{item.licenseSnapshot.licenseViolationType | licenseViolationType}} + {{item.handleState | handleState}} - 忽略 - 处置 - 申请延期 + 忽略 + 处置 + 申请延期 diff --git a/src/app/pages/license/inform/inform.component.ts b/src/app/pages/license/inform/inform.component.ts index b201955..368e1f9 100644 --- a/src/app/pages/license/inform/inform.component.ts +++ b/src/app/pages/license/inform/inform.component.ts @@ -1,4 +1,6 @@ +import { HttpClient } from '@angular/common/http'; import { Component, OnInit } from '@angular/core'; +import { NzMessageService } from 'ng-zorro-antd/message'; import { Observable, fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; @Component({ @@ -8,9 +10,9 @@ import { debounceTime } from 'rxjs/operators'; }) export class InformComponent implements OnInit { - constructor() { } + constructor(private http: HttpClient, private message: NzMessageService) { } tableSpin = false - 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 ngOnInit(): void { @@ -19,14 +21,83 @@ export class InformComponent implements OnInit { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' }); + + + this.getInform() } + dispose() { + console.log('处置') + } + //获取当前油站通知 + SkipCount = '0' + MaxResultCount = '100' + getInform() { + this.tableSpin = true + let data = JSON.parse(sessionStorage.getItem('userdataOfgasstation')); + let params: any = { + OrganizationUnitId: data.organization.id || "", + Active: true, + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount + } + this.http.get(`/api/services/app/StationValidityLicenseNotificationRecord/GetAll`, { params: params }).subscribe((data: any) => { + this.list = data.result.items + this.tableSpin = false + console.log(data.result.items) + }) + } + //获取办理类型 + getHandleTypes(handleTypes: any[]): string { + if (!handleTypes || !handleTypes.length) { + return + } + let names: string[] = [] + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item => { + list.find(element => { + item == element.value ? names.push(element.name) : null + }) + }) + return names.join(',') + } - dispose() { - console.log('处置') + + //处置 + updateState(item, type) { + let body = { + id: item.id, + operation: type + } + this.http.put('/api/services/app/StationValidityLicenseNotificationRecord/UpdateState', body).subscribe(data => { + this.getInform() + this.message.create('success', '操作成功'); + }, err => { + this.message.create('error', '操作失败'); + }) } } +//办理类型 +export class handleType { + list: handleTypeList[] = [ + { value: 0, name: "无" }, + { value: 1, name: "年度公示" }, + { value: 2, name: "年检" }, + { value: 3, name: "到期换证" }, + { value: 4, name: "年度执行报告" }, + { value: 5, name: "到期检测" }, + { value: 6, name: "年度复训" }, + { value: 7, name: "年度检测" }, + { value: 8, name: "到期备案" }, + { value: 9, name: "到期评价" }, + ] +} +export class handleTypeList { + value: number + name: string +} \ No newline at end of file diff --git a/src/app/pages/license/nav-bar/nav-bar.component.scss b/src/app/pages/license/nav-bar/nav-bar.component.scss index dc9bf17..71c53c0 100644 --- a/src/app/pages/license/nav-bar/nav-bar.component.scss +++ b/src/app/pages/license/nav-bar/nav-bar.component.scss @@ -42,7 +42,7 @@ background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.8) 50%, rgba(35, 153, 255, 0) 100%); span { - margin-left: 10px; + margin-left: 25px; color: #bce0ff; font-size: 20px; font-family: titlefont; diff --git a/src/app/pages/license/update-category/details-update-category/details-update-category.component.html b/src/app/pages/license/update-category/details-update-category/details-update-category.component.html index c9ab387..4b970b7 100644 --- a/src/app/pages/license/update-category/details-update-category/details-update-category.component.html +++ b/src/app/pages/license/update-category/details-update-category/details-update-category.component.html @@ -7,48 +7,39 @@
    -

    证件名称:   营业执照

    +

    证件名称:   {{data.licenseTypeName || ''}}

    -

    证件编号:   Z201800041501

    +

    证件编号:   {{data.licenseCode || ''}}

    -

    证件有效期:   2018.12.02—2025.01.12

    +

    证件有效期:   {{data.validityStartTime | date:"yyyy/MM/dd"}} - {{data.validityEndTime | date:"yyyy/MM/dd"}}

    -

    办理类型:   年度公示

    +

    办理类型:   {{getHandleTypes(data.handleTypes)}}

    -

    有效期类型:   1523天

    +

    有效期类型:   {{data.validityDays || 0}}天

    -

    是否年检:   是

    -
    -

    证件图片:   

    + +

    证件图片:    + + + +

    审核记录 - 审核次数:6 + 审核次数:{{auditList.length}} - 驳回次数:2 + 驳回次数:{{getRejectNum()}}

    - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 + + {{item.creationTime | date:"yyyy/MM/dd"}} + {{item.auditStatus | auditStatus}} diff --git a/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts b/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts index 7bbcf2b..399308e 100644 --- a/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts +++ b/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts @@ -4,6 +4,8 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { HttpClient } from '@angular/common/http'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import Viewer from 'viewerjs'; +import { NzMessageService } from 'ng-zorro-antd/message'; +import { handleType, handleTypeList } from '../edit-update-category/edit-update-category.component'; @Component({ selector: 'app-details-update-category', @@ -12,19 +14,88 @@ import Viewer from 'viewerjs'; }) export class DetailsUpdateCategoryComponent implements OnInit { @Input() data?: any; - constructor(private modal: NzModalRef) { } + constructor(private modal: NzModalRef,private message: NzMessageService,private http: HttpClient) { } ngOnInit(): void { + this.getAuditLogging() } + auditList: any[] = []; + //获取审核记录 + getAuditLogging() { + if (!this.data.auditLogId) { + return + } + let params = { id: this.data.auditLogId } + this.http.get(`/api/services/app/ContentAuditLog/Get`,{params}).subscribe((data: any)=>{ + this.auditList = data.result.actionList || [] + console.log(this.auditList) + }) + } + + //获取驳回次数 + getRejectNum(): number { + let num = 0 + this.auditList.forEach(item=>{ + if (item.auditStatus == 3) { + num = num + 1 + } + }) + return num + } destroyModal() { this.modal.destroy({ data: 'this the result data' }); } + + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let names: string[] = [] + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? names.push(element.name) : null + }) + }) + return names.join(',') + } + + //获取文件格式 + getFileType(name: string):string { + let suffix + if (name.substring(name.length-4).includes('png') || name.substring(name.length-4).includes('jpg') || name.substring(name.length-4).includes('jpeg') || name.substring(name.length-4).includes('webp')) { + suffix = 'img' + } else if (name.substring(name.length-4).includes('doc') || name.substring(name.length-4).includes('docx')) { + suffix = 'word' + } else if (name.substring(name.length-4).includes('pdf')) { + suffix = 'pdf' + } + return suffix + } + + //查看文件 + lookFile(item) { + if (!item.imageUrl) { + return + } + if (this.getFileType(item.imageUrl) == 'word') { + let arr = item.imageUrl.split('.') + arr[arr.length - 1] = 'pdf' + window.open(arr.join('.')) + } else if (this.getFileType(item.imageUrl) == 'pdf') { + window.open(item.imageUrl) + } else { + this.message.create('warning', '暂不支持查看!'); + } + } + //查看图片 viewImg(url) { - // url.split('?')[0] let dom = document.getElementById(`viewerjs`) let pObjs = dom.childNodes; let node = document.createElement("img") @@ -42,4 +113,5 @@ export class DetailsUpdateCategoryComponent implements OnInit { node.click(); }, 0); } + } diff --git a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html index c34cd30..5020e33 100644 --- a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html +++ b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html @@ -6,7 +6,7 @@
    -

    证件名称: 营业执照

    +

    证件名称: {{data2.licenseTypeName}}

    @@ -14,7 +14,7 @@ - + @@ -22,24 +22,24 @@

    证件有效期*

    -

    - 有效期类型: 1456天 - 是否年检: 是 + 有效期类型: {{data2.validityDays || 0}}天 +

    办理类型

    - - + + @@ -48,13 +48,15 @@
    - - -
    -
    +
    diff --git a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts index fab92ef..d5091ac 100644 --- a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts +++ b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts @@ -4,6 +4,8 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { HttpClient } from '@angular/common/http'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import Viewer from 'viewerjs'; +import { NzMessageService } from 'ng-zorro-antd/message'; + @Component({ selector: 'app-edit-update-category', templateUrl: './edit-update-category.component.html', @@ -14,33 +16,108 @@ export class EditUpdateCategoryComponent implements OnInit { @Input() data?: any; validateForm!: FormGroup; - constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } + constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService,private message: NzMessageService,) { } + handleTypeList: handleTypeList[] = new handleType().list; + data2: any; //深拷贝data + isLongTermTime: Date = null; // 限期 日期 + isNoLongTermTime: Date[] = []; //长期 日期 - data2 ngOnInit(): void { this.validateForm = this.fb.group({ number: [null, [Validators.required]], isLongTerm: [null, [Validators.required]], - type: [null, [Validators.required]] + type: [null, [Validators.required]], + isLongTermTime: [null,], + isNoLongTermTime: [null,], }); + // 日期 this.data2 = JSON.parse(JSON.stringify(this.data)) + if (this.data2.isLongTerm) { + this.isLongTermTime = new Date(this.data2.validityStartTime) + } else { + this.isNoLongTermTime = [] + this.isNoLongTermTime.push(new Date(this.data2.validityStartTime)) + this.isNoLongTermTime.push(new Date(this.data2.validityEndTime)) + } + + console.log(this.data2) } - isLongTerm = false imageUrl = '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg' - validityChange($event) { - console.log($event) - this.isLongTerm = $event - } destroyModal() { this.modal.destroy({ data: 'this the result data' }); } + ok() { this.modal.triggerOk() } + //check change + validityChange($event) { + if ($event) { //长期 + this.data2.validityDays = 999 + } else { //限期 + let start = (new Date(this.isNoLongTermTime[0])).getTime(); + let end = (new Date(this.isNoLongTermTime[1])).getTime(); + let time = end - start + if (time <= 0) { + this.data2.validityDays = 0 + } else { + this.data2.validityDays = time / (1000*3600*24); + } + } + } + + //date change + onChange(e) { + if (!e) { + return + } + if (e instanceof Array) { + let start = (new Date(e[0])).getTime(); + let end = (new Date(e[1])).getTime(); + let time = end - start + if (time <= 0) { + this.data2.validityDays = 0 + } else { + this.data2.validityDays = time / (1000*3600*24); + } + } else { + this.data2.validityDays = 999 + } + } + + //获取文件格式 + getFileType(name: string):string { + let suffix + if (name.substring(name.length-4).includes('png') || name.substring(name.length-4).includes('jpg') || name.substring(name.length-4).includes('jpeg') || name.substring(name.length-4).includes('webp')) { + suffix = 'img' + } else if (name.substring(name.length-4).includes('doc') || name.substring(name.length-4).includes('docx')) { + suffix = 'word' + } else if (name.substring(name.length-4).includes('pdf')) { + suffix = 'pdf' + } + return suffix + } + + //查看文件 + lookFile(item) { + if (!item.imageUrl) { + return + } + if (this.getFileType(item.imageUrl) == 'word') { + let arr = item.imageUrl.split('.') + arr[arr.length - 1] = 'pdf' + window.open(arr.join('.')) + } else if (this.getFileType(item.imageUrl) == 'pdf') { + window.open(item.imageUrl) + } else { + this.message.create('warning', '暂不支持查看!'); + } + } + isLoadingSave: boolean = false @@ -72,6 +149,7 @@ export class EditUpdateCategoryComponent implements OnInit { let dataObj = data as any; let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName; this.imageUrl = filePath + this.data2.imageUrl = filePath console.log('上传成功', filePath) resolve('success') }); @@ -87,6 +165,7 @@ export class EditUpdateCategoryComponent implements OnInit { let dataObj = value as any; let filePath = dataObj.filePath this.imageUrl = filePath + this.data2.imageUrl = filePath console.log('上传成功', filePath) }); @@ -94,7 +173,6 @@ export class EditUpdateCategoryComponent implements OnInit { //查看图片 viewImg(url) { - // url.split('?')[0] let dom = document.getElementById(`viewerjs`) let pObjs = dom.childNodes; let node = document.createElement("img") @@ -114,3 +192,23 @@ export class EditUpdateCategoryComponent implements OnInit { } } + +//办理类型 +export class handleType { + list: handleTypeList[] =[ + { value: 0, name: "无" }, + { value: 1, name: "年度公示" }, + { value: 2, name: "年检" }, + { value: 3, name: "到期换证" }, + { value: 4, name: "年度执行报告" }, + { value: 5, name: "到期检测" }, + { value: 6, name: "年度复训" }, + { value: 7, name: "年度检测" }, + { value: 8, name: "到期备案" }, + { value: 9, name: "到期评价" }, + ] +} +export class handleTypeList { + value: number + name: string +} \ No newline at end of file diff --git a/src/app/pages/license/update-category/update-category.component.html b/src/app/pages/license/update-category/update-category.component.html index 2a487c5..d9e1300 100644 --- a/src/app/pages/license/update-category/update-category.component.html +++ b/src/app/pages/license/update-category/update-category.component.html @@ -5,14 +5,14 @@ - 证件名称 + 证件名称 证件编号 证件有效期 附件 有效期类型 办理类型 - 是否年检 + 提交时间 审核状态 预警状态 @@ -22,28 +22,46 @@ - 证件名称 + {{item.licenseTypeName || ''}} - 证件编号 - 证件有效期 + {{item.licenseCode || ''}} + {{item.isLongTerm ? '长期证照' : (item.validityEndTime | date:"yyyy/MM/dd")}} - - - + + + + + + + 长期 + + + {{item.validityDays ? item.validityDays+'天' : '/'}} + + + + {{getHandleTypes(item.handleTypes)}} + + {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 + + {{item.auditStatus | auditStatus}} + + + + 办理提醒 + 临期提醒 + 逾期报警 - 有效期类型 - 办理类型 - 是否年检 - 提交时间 - 审核状态 - 预警状态 编辑 详情 - 提交审核 + 撤销审核 + 提交审核 + 审核完成 diff --git a/src/app/pages/license/update-category/update-category.component.ts b/src/app/pages/license/update-category/update-category.component.ts index 4e97a8e..5753622 100644 --- a/src/app/pages/license/update-category/update-category.component.ts +++ b/src/app/pages/license/update-category/update-category.component.ts @@ -3,7 +3,7 @@ import { NzModalService } from 'ng-zorro-antd/modal'; import { Observable, fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; import Viewer from 'viewerjs'; -import { EditUpdateCategoryComponent } from './edit-update-category/edit-update-category.component'; +import { EditUpdateCategoryComponent, handleType, handleTypeList } from './edit-update-category/edit-update-category.component'; import * as moment from 'moment'; import { NzMessageService } from 'ng-zorro-antd/message'; import { HttpClient } from '@angular/common/http'; @@ -18,11 +18,7 @@ export class UpdateCategoryComponent implements OnInit { constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient) { } tableSpin = false - list = [ - { url: '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg', type: 'img' }, - { url: '/api/Objects/sinochemweb/stationPhotos/853/完整度规划20200724.docx', type: 'word' }, - { url: '/api/Objects/sinochemweb/stationPhotos/853/10.6 MB.pdf', type: 'pdf' }, - ] + list = [] tableScrollHeight ngOnInit(): void { @@ -31,12 +27,53 @@ export class UpdateCategoryComponent implements OnInit { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' }); - let xxx = '/api/Objects/sinochemweb/stationPhotos/853/10.6 MB.pdf' - // console.log(666,xxx.split('.')[xxx.split('.').length - 1]) + this.getStationList() } + + //获取当前油站档案类证照 + getStationList() { + this.tableSpin = true + let data = JSON.parse(sessionStorage.getItem('userdataOfgasstation')); + let params = { orgId: data.organization.id || "" } + 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) + }) + } + + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let names: string[] = [] + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? names.push(element.name) : null + }) + }) + return names.join(',') + } + + //获取文件格式 + getFileType(name: string):string { + let suffix + if (name.substring(name.length-4).includes('png') || name.substring(name.length-4).includes('jpg') || name.substring(name.length-4).includes('jpeg') || name.substring(name.length-4).includes('webp')) { + suffix = 'img' + } else if (name.substring(name.length-4).includes('doc') || name.substring(name.length-4).includes('docx')) { + suffix = 'word' + } else if (name.substring(name.length-4).includes('pdf')) { + suffix = 'pdf' + } + return suffix + } + //查看图片 viewImg(url) { - // url.split('?')[0] let dom = document.getElementById(`viewerjs`) let pObjs = dom.childNodes; let node = document.createElement("img") @@ -54,53 +91,28 @@ export class UpdateCategoryComponent implements OnInit { node.click(); }, 0); } + //查看文件 lookFile(item) { - console.log('item', item) - - let suffix = item.url.split('.')[item.url.split('.').length - 1].toLowerCase() - if (item.type == 'word') { - let arr = item.url.split('.') + if (!item.imageUrl) { + return + } + if (this.getFileType(item.imageUrl) == 'word') { + let arr = item.imageUrl.split('.') arr[arr.length - 1] = 'pdf' window.open(arr.join('.')) - } else if (item.type == 'pdf') { - window.open(item.url) + } else if (this.getFileType(item.imageUrl) == 'pdf') { + window.open(item.imageUrl) } else { - // let config = new MatSnackBarConfig(); - // config.verticalPosition = 'top'; - // config.duration = 3000 - // this.snackBar.open('该文件类型暂不支持在线查看', '确定', config); + this.message.create('warning', '暂不支持查看!'); } - - // const modal = this.modal.create({ - // nzContent: PdfWordLookComponent, - // nzViewContainerRef: this.viewContainerRef, - // nzWidth: 850, - // 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 - // }, - // nzFooter: null, - // nzClosable: false, - // nzOnOk: async () => { - - // } - // }); - // const instance = modal.getContentComponent(); - // modal.afterClose.subscribe(result => { }); } + dispose() { - console.log('处置') + } edit(item) { - console.log('item', item) const modal = this.modal.create({ nzContent: EditUpdateCategoryComponent, nzViewContainerRef: this.viewContainerRef, @@ -120,20 +132,20 @@ export class UpdateCategoryComponent implements OnInit { nzOnOk: async () => { if (instance.validateForm.valid) { await new Promise(resolve => { - let body = { - id: item.id, - name: instance.validateForm.value.name, - storageLocation: instance.validateForm.value.storageLocation, - productionDate: moment(instance.validateForm.value.productionDate).format('yyyy-MM-DD'), - maintenanceDate: moment(instance.validateForm.value.maintenanceDate).format('yyyy-MM-DD'), - validityEndTime: moment(instance.validateForm.value.validityEndTime).format('yyyy-MM-DD'), - organizationUnitId: item.organizationUnitId + let body = instance.data2 + // 日期 + if (body.isLongTerm) { + body.validityStartTime = instance.isLongTermTime + } else { + body.validityStartTime = instance.isNoLongTermTime[0] || new Date() + body.validityEndTime = instance.isNoLongTermTime[1] || new Date() } - // this.http.put('/api/services/app/FireEquipment/Update', body).subscribe(data => { - // resolve(data) - // this.message.create('success', '修改成功!'); - // return true - // }) + this.http.post('/api/services/app/StationValidityLicense/Create', body).subscribe(data => { + resolve(data); + this.getStationList(); + this.message.create('success', '修改成功!'); + return true + }) }) } else { this.message.create('warning', '请填写完整!'); @@ -144,8 +156,8 @@ export class UpdateCategoryComponent implements OnInit { const instance = modal.getContentComponent(); modal.afterClose.subscribe(result => { }); } + details(item) { - console.log('item', item) const modal = this.modal.create({ nzContent: DetailsUpdateCategoryComponent, nzViewContainerRef: this.viewContainerRef, @@ -169,4 +181,26 @@ export class UpdateCategoryComponent implements OnInit { const instance = modal.getContentComponent(); modal.afterClose.subscribe(result => { }); } + + //提交审核 + submitReview(item){ + if (!item.id) { + return + } + let params = { id: item.id } + this.http.post('/api/services/app/StationValidityLicense/Commit', {},{params}).subscribe(data => { + this.message.create('success', '提交审核成功!'); + this.getStationList(); + }) + } + + //撤销审核 + cancelReview(item){ + let params = { id: item.id } + this.http.post('/api/services/app/StationValidityLicense/Uncommit', {},{params}).subscribe(data => { + this.message.create('success', '撤销审核成功!'); + this.getStationList(); + }) + } + } diff --git a/src/app/pages/oil-station-info/oil-station-info.component.html b/src/app/pages/oil-station-info/oil-station-info.component.html index 4fef0be..ac37f7a 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.html +++ b/src/app/pages/oil-station-info/oil-station-info.component.html @@ -6,6 +6,7 @@
    + @@ -28,9 +29,9 @@ - - - + + + @@ -58,14 +59,14 @@ + --> @@ -300,7 +301,14 @@
    站名 + + + + + + +
    区域
    - + + +
    + 审核中... +
    + + +
    - + 当前审核状态:{{httpBody.auditStatus | auditStatus}} + + +
    diff --git a/src/app/pages/oil-station-info/oil-station-info.component.scss b/src/app/pages/oil-station-info/oil-station-info.component.scss index 24e0541..d8f917f 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.scss +++ b/src/app/pages/oil-station-info/oil-station-info.component.scss @@ -27,11 +27,12 @@ .tablebox { flex: 1; - + .table { + position: relative; table, table tr th, @@ -178,31 +179,40 @@ } } + + .shade { + width: 100%; + height: 100%; + position: absolute; + left: 0; + top: 0; + background-color: rgba(77, 80, 83, 0.3); + display: flex; + justify-content: center; + align-items: center; + font-size: 25px; + font-family: titlefont; + color: white; + } } .btnbox { - height: 40px; + height: 36px; + line-height: 36px; width: 100%; - margin-bottom: 24px; display: flex; justify-content: flex-end; button { - height: 40px; - background: rgba(0, 129, 255, 0.3); + height: 36px; + background: rgba(0, 129, 255, 0.4); border: 1px solid #36A2FF; opacity: 1; border-radius: 0px; color: #91CCFF; } - button:nth-child(1) { - width: 100px; - margin-left: 16px; - } - - button:nth-child(2) { - width: 130px; + button{ margin-left: 16px; } } diff --git a/src/app/pages/oil-station-info/oil-station-info.component.ts b/src/app/pages/oil-station-info/oil-station-info.component.ts index 21e6a8a..59580b4 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.ts +++ b/src/app/pages/oil-station-info/oil-station-info.component.ts @@ -53,15 +53,7 @@ export class OilStationInfoComponent implements OnInit { address: [null], distance: [null], contactInformation: [null] - }), - // validityTime: this.fb.group({ - // businessLicensevalidityTime: [null], - // businessLicensevalidityTimeDay: [null, [Validators.required]], - // hazardousLicensevalidityTime: [null], - // hazardousLicensevalidityTimeDay: [null, [Validators.required]], - // oilLicensevalidityTime: [null], - // oilLicensevalidityTimeDay: [null, [Validators.required]] - // }) + }) }); this.getInfo() @@ -71,14 +63,14 @@ export class OilStationInfoComponent implements OnInit { //获取油站信息 - gallery + // gallery getInfo() { this.http.get('/api/services/app/GasStation/Get', { params: { organizationUnitId: this.userdata.organization.id } }).subscribe((data: any) => { - console.log('油站信息', data) + this.httpBody = data.result if (!this.httpBody.govUnitDetail) { this.httpBody.govUnitDetail = { @@ -92,30 +84,32 @@ export class OilStationInfoComponent implements OnInit { this.hospital = data.result.govUnitDetail.hospital this.fireBrigade = data.result.govUnitDetail.fireBrigade } - if (this.httpBody.licenses.length == 0) { - this.httpBody.licenses = [ - { name: '营业执照', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 1, hasAnnualInspection: true }, - { name: '危险化学品', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 3, hasAnnualInspection: false }, - { name: '成品油零售', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 2, hasAnnualInspection: true } - ] - } else { - console.log('走这里了',this.httpBody.licenses) - this.httpBody.licenses.forEach(item => { - if (item.endTime == '9999-01-01T00:00:00') { - item.isPerpetual = true - } else { - item.isPerpetual = false - } - }) - } - this.httpBody.stationType ? this.httpBody.stationType = String(this.httpBody.stationType) : null - setTimeout(() => { - this.gallery = new Viewer(document.getElementById('images'), { - show: () => { // 动态加载图片后,更新实例 - this.gallery.update(); - }, - }); - }, 0); + // if (this.httpBody.licenses.length == 0) { + // this.httpBody.licenses = [ + // { name: '营业执照', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 1, hasAnnualInspection: true }, + // { name: '危险化学品', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 3, hasAnnualInspection: false }, + // { name: '成品油零售', code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: 2, hasAnnualInspection: true } + // ] + // } else { + // console.log('走这里了',this.httpBody.licenses) + // this.httpBody.licenses.forEach(item => { + // if (item.endTime == '9999-01-01T00:00:00') { + // item.isPerpetual = true + // } else { + // item.isPerpetual = false + // } + // }) + // } + // this.httpBody.stationType ? this.httpBody.stationType = String(this.httpBody.stationType) : null + + console.log('油站信息', this.httpBody) + // setTimeout(() => { + // this.gallery = new Viewer(document.getElementById('images'), { + // show: () => { // 动态加载图片后,更新实例 + // this.gallery.update(); + // }, + // }); + // }, 0); }, err => { console.log('油站错误信息', err.error.error.message) @@ -165,6 +159,7 @@ export class OilStationInfoComponent implements OnInit { id: null, stationName: JSON.parse(sessionStorage.getItem('userdata')).organization.displayName, organizationUnitId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + auditStatus: null, openTime: '', stationType: '', laneCount: '', @@ -195,63 +190,60 @@ export class OilStationInfoComponent implements OnInit { } } - onChange($event) { - } + // addName = '' + // isVisible = false; + // showModal(): void { + // this.addName = '' + // this.isVisible = true; + // } - addName = '' - isVisible = false; - showModal(): void { - console.log(this.addName) - this.addName = '' - this.isVisible = true; - } + // handleOk(): void { + // this.isVisible = false; + // if (this.addName) { + // this.addTr() + // } + // } - handleOk(): void { - this.isVisible = false; - if (this.addName) { - this.addTr() - } - } - - handleCancel(): void { - console.log('Button cancel clicked!'); - this.isVisible = false; - } - addTr() { - this.httpBody.licenses.push( - { name: this.addName, code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: -1, hasAnnualInspection: false }, - ) - } - deleteTrConfirm(key) { - console.log(key) - this.httpBody.licenses.splice(key, 1); - } + // handleCancel(): void { + // console.log('Button cancel clicked!'); + // this.isVisible = false; + // } + // addTr() { + // this.httpBody.licenses.push( + // { name: this.addName, code: '', isPerpetual: false, startTime: '', endTime: '', firstWarnTime: '', secondWarnTime: '', imageUrl: '', annualInspectionTime: '', annualInspectionWarnTime: '', annualInspectionOrganizationName: '', type: -1, hasAnnualInspection: false }, + // ) + // } + // deleteTrConfirm(key) { + // console.log(key) + // this.httpBody.licenses.splice(key, 1); + // } goback() { this.router.navigate(['/todaywarning/petrolStation']) } + isLoadingSave: boolean = false submitForm() { - let valid = true - console.log(this.httpBody.licenses) - this.httpBody.licenses.forEach(element => { - if (!element.startTime || !element.endTime || !element.firstWarnTime || !element.secondWarnTime || !element.code) { - valid = false - console.log('普通拦截') - return - } - if (element.hasAnnualInspection) { - if (!element.annualInspectionWarnTime || !element.annualInspectionOrganizationName || !element.annualInspectionTime) { - valid = false - console.log('年检拦截') - return - } - } - }); - if (!valid) { - this.message.create('error', '请将证照信息填写完整!'); - return - } + // let valid = true + // console.log(this.httpBody.licenses) + // this.httpBody.licenses.forEach(element => { + // if (!element.startTime || !element.endTime || !element.firstWarnTime || !element.secondWarnTime || !element.code) { + // valid = false + // console.log('普通拦截') + // return + // } + // if (element.hasAnnualInspection) { + // if (!element.annualInspectionWarnTime || !element.annualInspectionOrganizationName || !element.annualInspectionTime) { + // valid = false + // console.log('年检拦截') + // return + // } + // } + // }); + // if (!valid) { + // this.message.create('error', '请将证照信息填写完整!'); + // return + // } if (this.validateForm.valid) { this.isLoadingSave = true this.httpBody.openTime = moment(this.httpBody.openTime).format('YYYY-MM-MM')//开业时间格式化 @@ -271,7 +263,6 @@ export class OilStationInfoComponent implements OnInit { this.http.put('/api/services/app/GasStation/Update', body).subscribe((data: any) => { this.isLoadingSave = false this.message.create('success', '保存成功!'); - // this.httpBody.licenses = data.result.licenses }, err => { this.isLoadingSave = false this.message.create('error', '保存失败!'); @@ -283,57 +274,87 @@ export class OilStationInfoComponent implements OnInit { } - isLoadingSave: boolean = false - uploadIndex: string - filechange(e, index) { - let file = e.target.files[0] || null //获取上传的文件 - this.uploadIndex = index - this.openFileSelect(file, `stationPhotos/${this.userdata.organization.id}/`) - } - //设置文件路径并上传 - postFilePath - async openFileSelect(file: File, extensionPath: string) { - this.postFilePath = extensionPath; - let fileSize = file.size || null //上传文件的总大小 - let shardSize = 5 * 1024 * 1024 //5MB 超过5MB要分块上传 - if (fileSize >= shardSize) // 超过5MB要分块上传 - { - await this.postFileByMul(file); - setTimeout(() => { - this.gallery.destroy() - this.gallery = new Viewer(document.getElementById('images')); - }, 0); - } - else //普通上传 - { - await this.postFile(file); - setTimeout(() => { - this.gallery.destroy() - this.gallery = new Viewer(document.getElementById('images')); - }, 0); + // uploadIndex: string + // filechange(e, index) { + // let file = e.target.files[0] || null //获取上传的文件 + // this.uploadIndex = index + // this.openFileSelect(file, `stationPhotos/${this.userdata.organization.id}/`) + // } + // //设置文件路径并上传 + // postFilePath + // async openFileSelect(file: File, extensionPath: string) { + // this.postFilePath = extensionPath; + // let fileSize = file.size || null //上传文件的总大小 + // let shardSize = 5 * 1024 * 1024 //5MB 超过5MB要分块上传 + // if (fileSize >= shardSize) // 超过5MB要分块上传 + // { + // await this.postFileByMul(file); + // setTimeout(() => { + // this.gallery.destroy() + // this.gallery = new Viewer(document.getElementById('images')); + // }, 0); + // } + // else //普通上传 + // { + // await this.postFile(file); + // setTimeout(() => { + // this.gallery.destroy() + // this.gallery = new Viewer(document.getElementById('images')); + // }, 0); + // } + // } + // //上传文件 + // async postFile(file: File) { + // await new Promise((resolve, reject) => { + // this.objectsSrv.postFile(this.postFilePath, file).subscribe(data => { + // let dataObj = data as any; + // let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName; + // this.httpBody.licenses[this.uploadIndex].imageUrl = filePath + // resolve('success') + // }); + // }) + // } + + // /** + // * 分块上传 + // * @param file + // */ + // postFileByMul(file: File) { + // this.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => { + // let dataObj = value as any; + // this.httpBody.licenses[this.uploadIndex].imageUrl = dataObj.filePath + // }); + + // } + + + isSubmitAuditLoading: boolean = false + submitAudit() { + let params = { + id: this.httpBody.id } - } - //上传文件 - async postFile(file: File) { - await new Promise((resolve, reject) => { - this.objectsSrv.postFile(this.postFilePath, file).subscribe(data => { - let dataObj = data as any; - let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName; - this.httpBody.licenses[this.uploadIndex].imageUrl = filePath - resolve('success') - }); + this.http.post('/api/services/app/GasStation/Commit', null, { params: params }).subscribe((data: any) => { + this.isSubmitAuditLoading = false + this.getInfo() + this.message.create('success', '提交审核成功!'); + }, err => { + this.isSubmitAuditLoading = false + this.message.create('error', '提交审核失败!'); }) } - /** - * 分块上传 - * @param file - */ - postFileByMul(file: File) { - this.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => { - let dataObj = value as any; - this.httpBody.licenses[this.uploadIndex].imageUrl = dataObj.filePath - }); - + isRevocationAuditLoading: boolean = false + revocationAudit() { + let params = { + id: this.httpBody.id + } + this.http.post('/api/services/app/GasStation/Uncommit', null, { params: params }).subscribe((data: any) => { + this.isRevocationAuditLoading = false + this.getInfo() + this.message.create('success', '撤销审核成功!'); + }, err => { + this.isRevocationAuditLoading = false + this.message.create('error', '撤销审核失败!'); + }) } } diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index 9d8f0a9..297ba2a 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -15,6 +15,7 @@ import { init3DGuard } from './init3D.guard'; import { WarningStatisticsListComponent } from './warning-statistics-list/warning-statistics-list.component'; import { NavBarComponent } from './license/nav-bar/nav-bar.component'; import { MisinformationListComponent } from './misinformation-list/misinformation-list.component'; +import { AuditNavComponent } from './audit/audit-nav/audit-nav.component'; const routes: Routes = [ { path: 'homepage', component: HomePageComponent }, @@ -32,7 +33,9 @@ const routes: Routes = [ { path: 'oliStationInfo', component: OilStationInfoComponent }, { path: 'license/petrolStation', component: NavBarComponent }, { path: 'records/misinformationList', component: MisinformationListComponent }, - { path: 'records/petrolStation/misinformationList', component: MisinformationListComponent } + { path: 'records/petrolStation/misinformationList', component: MisinformationListComponent }, + { path: 'audit', component: AuditNavComponent } + ]; @NgModule({ diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 076b4da..0a0279e 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -71,11 +71,25 @@ import { DetailsFileCategoryComponent } from './license/file-category/details-fi import { NzTimelineModule } from 'ng-zorro-antd/timeline'; import { PdfWordLookComponent } from './license/pdf-word-look/pdf-word-look.component'; import { MisinformationListComponent } from './misinformation-list/misinformation-list.component'; +import { OilStationListComponent } from './plan-admin/oil-station-list/oil-station-list.component'; +import { UpdateLicenseListComponent } from './plan-admin/update-license-list/update-license-list.component'; +import { FileLicenseListComponent } from './plan-admin/file-license-list/file-license-list.component'; +import { AuditNavComponent } from './audit/audit-nav/audit-nav.component'; +import { AuditIngComponent } from './audit/audit-ing/audit-ing.component'; +import { AuditRecordComponent } from './audit/audit-record/audit-record.component'; +import { AuditInformTimeComponent } from './audit/audit-inform-time/audit-inform-time.component'; +import { AuditDisposeComponent } from './audit/audit-ing/audit-dispose/audit-dispose.component'; +import { EditInformTimeComponent } from './audit/audit-inform-time/edit-inform-time/edit-inform-time.component'; +import { AuditDetailsInformTimeComponent } from './audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component'; +import { auditStatusPipe, handleState, licenseViolationType, notificationContent } from '../pipes/type.pipe'; +import { GasBaseInfoComponent } from './audit/gas-base-info/gas-base-info.component'; +import { AnnualInspectionComponent } from './audit/annual-inspection/annual-inspection.component'; +import { EditAnnualInspectionComponent } from './audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component'; @NgModule({ declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, - AddequipmentComponent, EditequipmentComponent, PlanAdminComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, HomePageComponent, OilUnloadingProcessListComponent, ChangePasswordComponent, FacilitySortPipe, WarningStatisticsListComponent, DisposeequipmentComponent, NavBarComponent, InformComponent, UpdateCategoryComponent, FileCategoryComponent, HistoriesComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent,PdfWordLookComponent, MisinformationListComponent], + AddequipmentComponent, EditequipmentComponent, PlanAdminComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, HomePageComponent, OilUnloadingProcessListComponent, ChangePasswordComponent, FacilitySortPipe, WarningStatisticsListComponent, DisposeequipmentComponent, NavBarComponent, InformComponent, UpdateCategoryComponent, FileCategoryComponent, HistoriesComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, MisinformationListComponent, OilStationListComponent, UpdateLicenseListComponent, FileLicenseListComponent, AuditNavComponent, AuditIngComponent, AuditRecordComponent, AuditInformTimeComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent, auditStatusPipe, GasBaseInfoComponent, notificationContent, licenseViolationType, handleState, AnnualInspectionComponent, EditAnnualInspectionComponent], imports: [ @@ -119,7 +133,7 @@ import { MisinformationListComponent } from './misinformation-list/misinformatio NzToolTipModule, NzTimelineModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent], + entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent, GasBaseInfoComponent, EditAnnualInspectionComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) diff --git a/src/app/pages/plan-admin/file-license-list/file-license-list.component.html b/src/app/pages/plan-admin/file-license-list/file-license-list.component.html new file mode 100644 index 0000000..03619c9 --- /dev/null +++ b/src/app/pages/plan-admin/file-license-list/file-license-list.component.html @@ -0,0 +1,63 @@ +
    + +
    + +
    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/pages/plan-admin/file-license-list/file-license-list.component.scss b/src/app/pages/plan-admin/file-license-list/file-license-list.component.scss new file mode 100644 index 0000000..06cfc17 --- /dev/null +++ b/src/app/pages/plan-admin/file-license-list/file-license-list.component.scss @@ -0,0 +1,79 @@ +.search { + box-sizing: border-box; + padding-left: 38px; + padding-right: 35px; + width: 100%; + height: 32px; + margin: 12px 0; + display: flex; + justify-content: space-between; + align-items: center; + + .legendbox { + display: flex; + align-items: center; + color: #FFFFFF; + flex: 1; + + .legendItem { + display: flex; + align-items: center; + margin-right: 12px; + + div { + width: 8px; + height: 8px; + margin-right: 3px; + } + } + } + + form { + flex: 1; + height: 32px; + display: flex; + justify-content: flex-end; + + input { + background: none; + border: 1px solid #91ccff; + color: #fff; + } + + .searchParams { + width: 35%; + } + + .btn { + margin-left: 16px; + } + } +} + +.box { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.tablebox { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; +} + + +.green { + color: #4BFFD4; +} + +.yellow { + color: #FFBD4B; +} + +.red { + color: #FF4B65; +} diff --git a/src/app/pages/plan-admin/file-license-list/file-license-list.component.ts b/src/app/pages/plan-admin/file-license-list/file-license-list.component.ts new file mode 100644 index 0000000..0418bb0 --- /dev/null +++ b/src/app/pages/plan-admin/file-license-list/file-license-list.component.ts @@ -0,0 +1,184 @@ +import { Component, OnInit, ViewChild, ElementRef, ViewContainerRef } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { NzContextMenuService, NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown'; +import { NzFormatEmitEvent, NzTreeComponent, NzTreeNode } from 'ng-zorro-antd/tree'; +import { Router } from '@angular/router'; +import { NavChangeService } from 'src/app/service/navChange.service'; +import { fromEvent } from 'rxjs'; +import { debounceTime } from 'rxjs/operators'; +import 'linqjs'; +import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component'; +import { NzModalService } from 'ng-zorro-antd/modal'; + +@Component({ + selector: 'app-file-license-list', + templateUrl: './file-license-list.component.html', + styleUrls: ['./file-license-list.component.scss'] +}) +export class FileLicenseListComponent implements OnInit { + + validateForm!: FormGroup; + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } + + tableScrollHeight + + ngOnInit(): void { + this.tableScrollHeight = '100px' + console.log('tableScrollHeight', this.tableScrollHeight) + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader - 30) + 'px' + }); + this.validateForm = this.fb.group({ + name: [null] + }); + + this.tableSpin = true + } + ngAfterViewInit(): void { + + + fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (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) + await this.getStationLicenses() + } + } + }); + } + + submitForm(): void { + for (const i in this.validateForm.controls) { + this.validateForm.controls[i].markAsDirty(); + this.validateForm.controls[i].updateValueAndValidity(); + } + this.list = [] + this.SkipCount = '0' + this.getStationLicenses() + } + 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.list = [] + this.SkipCount = '0' + this.getStationLicenses() + } + + tableSpin: boolean + totalCount: any //总数 + //获取点击组织机构的所有加油站 + SkipCount: string = '0' + MaxResultCount: string = '100' + + orId + list: any = [] + async getStationLicenses() { + let params = { + StationName: this.validateForm.value.name, + OrganizationUnitId: String(sessionStorage.getItem('planAdminOrid')), + IsContainsChildren: 'true', + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + // Sorting: ' BuildingBasicInfo.Id asc' + } + this.tableSpin = true + await new Promise((resolve, reject) => { + this.http.get('/api/services/app/StationFileLicense/GetStationLicenses', { + params: params + }).subscribe((data: any) => { + this.totalCount = data.result.totalCount + let arr = [] + data.result.data.forEach(element => { + let keyArr = Object.keys(element); + let valueArr = Object.values(element); + let newElement = (keyArr as any).zip(valueArr, (a, b) => { return { name: a, value: b } }); + + //修改排头 + let newArr = [] + for (let index = 0; index < newElement.length; index++) { + const item = newElement[index]; + if (item.name == '省公司') { + newArr[0] = item + newElement.splice(index--, 1) + } + if (item.name == '区域') { + newArr[1] = item + newElement.splice(index--, 1) + } + if (item.name == '油站名称') { + newArr[2] = item + newElement.splice(index--, 1) + } + } + let atLastArr = newArr.concat(newElement); + arr.push(atLastArr) + + }); + + + this.list = this.list.concat(arr); + this.list = [...this.list] + console.log('证照表格', this.list) + this.tableSpin = false + + setTimeout(() => { + let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader - 30) + 'px' + }, 0); + + + + resolve(data) + }) + }) + } + + //父组件调用子组件方法 + public onChildMethod() { + this.getStationLicenses() + } + + + lookDetails(i) { + // console.log(i) + // let params = { + // Id: i.licenseId + // } + // this.http.get('/api/services/app/StationValidityLicense/Get', { params: params }).subscribe((data: any) => { + // console.log('证照信息', data) + // const modal = this.modal.create({ + // nzContent: DetailsUpdateCategoryComponent, + // 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: data.result + // }, + // nzFooter: null, + // nzClosable: false, + // nzOnOk: async () => { + + // } + // }); + // const instance = modal.getContentComponent(); + // modal.afterClose.subscribe(result => { }); + // }) + + + } +} diff --git a/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html new file mode 100644 index 0000000..da7d4ac --- /dev/null +++ b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html @@ -0,0 +1,78 @@ +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.scss b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.scss new file mode 100644 index 0000000..fb58501 --- /dev/null +++ b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.scss @@ -0,0 +1,66 @@ +.search { + box-sizing: border-box; + padding-left: 38px; + padding-right: 35px; + width: 100%; + height: 32px; + margin: 12px 0; + display: flex; + justify-content: space-between; + align-items: center; + + .legendbox { + display: flex; + align-items: center; + color: #FFFFFF; + flex: 1; + + .legendItem { + display: flex; + align-items: center; + margin-right: 12px; + + div { + width: 8px; + height: 8px; + margin-right: 3px; + } + } + } + + form { + flex: 1; + height: 32px; + display: flex; + justify-content: flex-end; + + input { + background: none; + border: 1px solid #91ccff; + color: #fff; + } + + .searchParams { + width: 35%; + } + + .btn { + margin-left: 16px; + } + } +} + +.box { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.tablebox { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; +} diff --git a/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.ts b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.ts new file mode 100644 index 0000000..7d81460 --- /dev/null +++ b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.ts @@ -0,0 +1,123 @@ +import { Component, OnInit, ViewChild, ElementRef } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { NzContextMenuService, NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown'; +import { NzFormatEmitEvent, NzTreeComponent, NzTreeNode } from 'ng-zorro-antd/tree'; +import { Router } from '@angular/router'; +import { NavChangeService } from 'src/app/service/navChange.service'; +import { fromEvent } from 'rxjs'; +import { debounceTime } from 'rxjs/operators'; + +@Component({ + selector: 'app-oil-station-list', + templateUrl: './oil-station-list.component.html', + styleUrls: ['./oil-station-list.component.scss'] +}) +export class OilStationListComponent implements OnInit { + validateForm!: FormGroup; + constructor(private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } + + tableScrollHeight + + ngOnInit(): void { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + + console.log('tableScrollHeight', this.tableScrollHeight) + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + }); + this.validateForm = this.fb.group({ + name: [null] + }); + + this.tableSpin = true + } + ngAfterViewInit(): void { + fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (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) + await this.getGasStation() + } + } + }); + } + + submitForm(): void { + for (const i in this.validateForm.controls) { + this.validateForm.controls[i].markAsDirty(); + this.validateForm.controls[i].updateValueAndValidity(); + } + this.list = [] + this.SkipCount = '0' + this.getGasStation() + } + 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.list = [] + this.SkipCount = '0' + this.getGasStation() + } + + + + look(item) { + let gastionobj = { + organization: { + displayName: item.stationName, + isGasStation: true, + id: item.organizationUnitId + } + } + sessionStorage.setItem('userdataOfgasstation', JSON.stringify(gastionobj)) + this.router.navigate(['/todaywarning/petrolStation']) + let obj = { + name: 'oilstation' + } + this.navChangeService.sendMessage(obj);//发布一条消息 + } + + tableSpin: boolean + totalCount: any //总数 + //获取点击组织机构的所有加油站 + SkipCount: string = '0' + MaxResultCount: string = '100' + + orId + list: any = [] + async getGasStation() { + let params = { + StationName: this.validateForm.value.name, + OrganizationUnitId: String(sessionStorage.getItem('planAdminOrid')), + IsContainsChildren: 'true', + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + Sorting: ' BuildingBasicInfo.Id asc' + } + this.tableSpin = true + await new Promise((resolve, reject) => { + this.http.get('/api/services/app/GasStation/GetAll', { + params: params + }).subscribe((data: any) => { + this.totalCount = data.result.totalCount + this.list = this.list.concat(data.result.items); + this.list = [...this.list] + this.tableSpin = false + resolve(data) + }) + }) + } + + //父组件调用子组件方法 + public onChildMethod() { + this.getGasStation() + } +} diff --git a/src/app/pages/plan-admin/plan-admin.component.html b/src/app/pages/plan-admin/plan-admin.component.html index 4384100..7209128 100644 --- a/src/app/pages/plan-admin/plan-admin.component.html +++ b/src/app/pages/plan-admin/plan-admin.component.html @@ -26,80 +26,25 @@
    - +
    + +
    +
    + 站点管理 + 更新类证照 + 档案类证照 +
    +
    +
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
    + +
    +
    +
    \ No newline at end of file diff --git a/src/app/pages/plan-admin/plan-admin.component.scss b/src/app/pages/plan-admin/plan-admin.component.scss index 79ecb13..a973d33 100644 --- a/src/app/pages/plan-admin/plan-admin.component.scss +++ b/src/app/pages/plan-admin/plan-admin.component.scss @@ -9,12 +9,61 @@ .title { width: 100%; height: 48px; + + .titlebox { + width: 100%; + height: 100%; + display: flex; + align-items: center; + box-sizing: border-box; + padding-left: 12px; + + img { + width: 65px; + height: 65px; + } + + .content { + flex: 1; + height: 48px; + display: flex; + align-items: center; + // background-image: linear-gradient(to right, #002147, #033565, #064e8e, #064e8e, #033565, #002147); + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.32) 50%, rgba(35, 153, 255, 0) 100%); + + .contentitem { + width: 100%; + height: 32px; + display: flex; + align-items: center; + // background-image: linear-gradient(to right, #002147, #0f5ca0, #1c88e6, #1c88e6, #0f5ca0, #002147); + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.8) 50%, rgba(35, 153, 255, 0) 100%); + + .grey { + color: #6585a1; + } + + .selectedItem { + color: #bce0ff; + } + + span { + // + font-size: 20px; + font-family: titlefont; + margin-right: 20px; + cursor: pointer; + } + } + + } + } + } .orbox { height: 100%; - width: 360px; - margin-right: 40px; + width: 300px; display: flex; flex-direction: column; @@ -25,7 +74,7 @@ background: linear-gradient(180deg, rgba(3, 0, 0, 0) 0%, rgba(0, 46, 91, 0.68) 100%); margin-top: 12px; box-sizing: border-box; - padding: 18px 12px; + padding: 12px 8px; nz-tree { background: none; @@ -37,59 +86,15 @@ .stationList { flex: 1; - display: flex; - flex-direction: column; - - .search { - box-sizing: border-box; - padding-left: 22px; - padding-right: 33px; - width: 100%; - height: 32px; - margin-top: 14px; - margin-bottom: 22px; - - form { - width: 100%; - height: 32px; - display: flex; - justify-content: flex-end; - - input { - background: none; - border: 1px solid #91ccff; - color: #fff; - } - - .searchParams { - width: 22%; - } - .btn { - width: 5%; - margin-left: 16px; - } - } - } - .tablebox { - flex: 1; + .tabbox { + width: 100%; + height: 100%; display: flex; flex-direction: column; - align-items: center; - overflow: hidden; - - .pagination { - margin-top: 26px; - display: flex; - align-items: center; - justify-content: center; - } - - ::-webkit-scrollbar { - width: 0px; - } } + } @@ -102,6 +107,27 @@ .title { width: 100%; height: 42px; + + .titlebox { + img { + width: 46px; + height: 46px; + } + + .content { + height: 36px; + + .contentitem { + height: 25px; + + span { + margin-left: 6px; + font-size: 16px; + } + } + + } + } } .orbox { @@ -148,11 +174,32 @@ .title { width: 100%; height: 33px; + + .titlebox { + img { + width: 36px; + height: 36px; + } + + .content { + height: 28px; + + .contentitem { + height: 20px; + + span { + margin-left: 6px; + font-size: 13px; + } + } + + } + } } .orbox { width: 250px; - margin-right:23px; + margin-right: 23px; .or { margin-top: 5px; @@ -182,10 +229,11 @@ } } } - .tablebox{ - nz-table{ - th{ - font-size: 10px!important; + + .tablebox { + nz-table { + th { + font-size: 10px !important; } } } diff --git a/src/app/pages/plan-admin/plan-admin.component.ts b/src/app/pages/plan-admin/plan-admin.component.ts index 641d9a6..373d84e 100644 --- a/src/app/pages/plan-admin/plan-admin.component.ts +++ b/src/app/pages/plan-admin/plan-admin.component.ts @@ -8,58 +8,57 @@ import { Router } from '@angular/router'; import { NavChangeService } from 'src/app/service/navChange.service'; import { fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; +import { OilStationListComponent } from './oil-station-list/oil-station-list.component'; +import { UpdateLicenseListComponent } from './update-license-list/update-license-list.component'; +import { FileLicenseListComponent } from './file-license-list/file-license-list.component'; @Component({ selector: 'app-plan-admin', templateUrl: './plan-admin.component.html', styleUrls: ['./plan-admin.component.scss'] }) export class PlanAdminComponent implements OnInit { - validateForm!: FormGroup; + @ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; + @ViewChild('child') oilStationListComponent!: OilStationListComponent;; + @ViewChild('child2') updateLicenseListComponent!: UpdateLicenseListComponent;; + @ViewChild('child3') fileLicenseListComponent!: FileLicenseListComponent;; constructor(private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } - list: any = [] + ngOnInit(): void { - this.validateForm = this.fb.group({ - name: [null] - }); - this.tableSpin = true this.getAllOrganization() } - ngAfterViewInit(): void { - fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (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) - await this.getGasStation() - } - } - }); - } + //选择右侧tab页 + selectedTab = 0 + selectTab(index) { + this.selectedTab = index - submitForm(): void { - for (const i in this.validateForm.controls) { - this.validateForm.controls[i].markAsDirty(); - this.validateForm.controls[i].updateValueAndValidity(); + if (this.selectedTab == 0) { + setTimeout(() => { + this.oilStationListComponent.list = [] + this.oilStationListComponent.SkipCount = '0' + this.oilStationListComponent.onChildMethod() + }, 0); } - this.list = [] - this.SkipCount = '0' - this.getGasStation() - } - 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(); + if (this.selectedTab == 1) { + setTimeout(() => { + this.updateLicenseListComponent.list = [] + this.updateLicenseListComponent.SkipCount = '0' + this.updateLicenseListComponent.onChildMethod() + }, 0); + } + if (this.selectedTab == 2) { + setTimeout(() => { + this.fileLicenseListComponent.list = [] + this.fileLicenseListComponent.SkipCount = '0' + this.fileLicenseListComponent.onChildMethod() + }, 0); } - this.list = [] - this.SkipCount = '0' - this.getGasStation() } + + //获取所有组织机构 nodes: any = [] nzExpandAll = false @@ -67,7 +66,7 @@ export class PlanAdminComponent implements OnInit { orSpin: boolean = false getAllOrganization() { this.orSpin = true - let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id + let OrganizationUnitId = JSON.parse(sessionStorage.getItem('userdata')).organization.id let params = { OrganizationUnitId: OrganizationUnitId, IsContainsChildren: "true" @@ -93,75 +92,47 @@ export class PlanAdminComponent implements OnInit { this.nodes = [...this.toTree.toTree(data.result.items)] this.nzExpandedKeys = [OrganizationUnitId] this.nzSelectedKeys = [OrganizationUnitId] - this.OrganizationUnitId = OrganizationUnitId - this.getGasStation() + + sessionStorage.setItem('planAdminOrid', OrganizationUnitId) + this.oilStationListComponent.onChildMethod() }) } - tableheight() { - return (document.getElementById('tablebox').clientHeight - 42) + 'px' - } - - look(item) { - - let gastionobj = { - organization: { - displayName: item.stationName, - isGasStation: true, - id: item.organizationUnitId - } - } - sessionStorage.setItem('userdataOfgasstation', JSON.stringify(gastionobj)) - this.router.navigate(['/todaywarning/petrolStation']) - let obj = { - name: 'oilstation' - } - this.navChangeService.sendMessage(obj);//发布一条消息 - } nzExpandedKeys: any = [] activatedNode?: NzTreeNode; //点击tree节点 activeNode(data: NzFormatEmitEvent): void { this.activatedNode = data.node!; - // console.log(data) - this.OrganizationUnitId = data.node.origin.id - - this.list = [] - this.SkipCount = '0' - this.getGasStation() + sessionStorage.setItem('planAdminOrid', data.node.origin.id) + if (this.selectedTab == 0) { + setTimeout(() => { + this.oilStationListComponent.list = [] + this.oilStationListComponent.SkipCount = '0' + this.oilStationListComponent.onChildMethod() + }, 0); + } + if (this.selectedTab == 1) { + setTimeout(() => { + this.updateLicenseListComponent.list = [] + this.updateLicenseListComponent.SkipCount = '0' + this.updateLicenseListComponent.onChildMethod() + }, 0); + } + if (this.selectedTab == 2) { + setTimeout(() => { + this.fileLicenseListComponent.list = [] + this.fileLicenseListComponent.SkipCount = '0' + this.fileLicenseListComponent.onChildMethod() + }, 0); + } } - //获取点击组织机构的所有加油站 - SkipCount: string = '0' - MaxResultCount: string = '100' - OrganizationUnitId: any - tableSpin: boolean = false - totalCount: any //总数 - async getGasStation() { - let params = { - StationName: this.validateForm.value.name, - OrganizationUnitId: String(this.OrganizationUnitId), - IsContainsChildren: 'true', - SkipCount: this.SkipCount, - MaxResultCount: this.MaxResultCount, - Sorting: ' BuildingBasicInfo.Id asc' - } - this.tableSpin = true - await new Promise((resolve, reject) => { - this.http.get('/api/services/app/GasStation/GetAll', { - params: params - }).subscribe((data: any) => { - this.totalCount = data.result.totalCount - this.list = this.list.concat(data.result.items); - this.list = [...this.list] - this.tableSpin = false - resolve(data) - }) - }) - } + + + diff --git a/src/app/pages/plan-admin/update-license-list/update-license-list.component.html b/src/app/pages/plan-admin/update-license-list/update-license-list.component.html new file mode 100644 index 0000000..70b6bb8 --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-list.component.html @@ -0,0 +1,73 @@ +
    + +
    + +
    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/pages/plan-admin/update-license-list/update-license-list.component.scss b/src/app/pages/plan-admin/update-license-list/update-license-list.component.scss new file mode 100644 index 0000000..06cfc17 --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-list.component.scss @@ -0,0 +1,79 @@ +.search { + box-sizing: border-box; + padding-left: 38px; + padding-right: 35px; + width: 100%; + height: 32px; + margin: 12px 0; + display: flex; + justify-content: space-between; + align-items: center; + + .legendbox { + display: flex; + align-items: center; + color: #FFFFFF; + flex: 1; + + .legendItem { + display: flex; + align-items: center; + margin-right: 12px; + + div { + width: 8px; + height: 8px; + margin-right: 3px; + } + } + } + + form { + flex: 1; + height: 32px; + display: flex; + justify-content: flex-end; + + input { + background: none; + border: 1px solid #91ccff; + color: #fff; + } + + .searchParams { + width: 35%; + } + + .btn { + margin-left: 16px; + } + } +} + +.box { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.tablebox { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; +} + + +.green { + color: #4BFFD4; +} + +.yellow { + color: #FFBD4B; +} + +.red { + color: #FF4B65; +} diff --git a/src/app/pages/plan-admin/update-license-list/update-license-list.component.ts b/src/app/pages/plan-admin/update-license-list/update-license-list.component.ts new file mode 100644 index 0000000..82abbfe --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-list.component.ts @@ -0,0 +1,185 @@ +import { Component, OnInit, ViewChild, ElementRef, ViewContainerRef } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { NzContextMenuService, NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown'; +import { NzFormatEmitEvent, NzTreeComponent, NzTreeNode } from 'ng-zorro-antd/tree'; +import { Router } from '@angular/router'; +import { NavChangeService } from 'src/app/service/navChange.service'; +import { fromEvent } from 'rxjs'; +import { debounceTime } from 'rxjs/operators'; +import 'linqjs'; +import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component'; +import { NzModalService } from 'ng-zorro-antd/modal'; +@Component({ + selector: 'app-update-license-list', + templateUrl: './update-license-list.component.html', + styleUrls: ['./update-license-list.component.scss'] +}) +export class UpdateLicenseListComponent implements OnInit { + + validateForm!: FormGroup; + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private element: ElementRef, private navChangeService: NavChangeService, private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } + + tableScrollHeight + + ngOnInit(): void { + + + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + + console.log('tableScrollHeight', this.tableScrollHeight) + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' + }); + this.validateForm = this.fb.group({ + name: [null] + }); + + this.tableSpin = true + } + ngAfterViewInit(): void { + + + fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe(async (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) + await this.getStationLicenses() + } + } + }); + } + + submitForm(): void { + for (const i in this.validateForm.controls) { + this.validateForm.controls[i].markAsDirty(); + this.validateForm.controls[i].updateValueAndValidity(); + } + this.list = [] + this.SkipCount = '0' + this.getStationLicenses() + } + 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.list = [] + this.SkipCount = '0' + this.getStationLicenses() + } + + tableSpin: boolean + totalCount: any //总数 + //获取点击组织机构的所有加油站 + SkipCount: string = '0' + MaxResultCount: string = '100' + + orId + list: any = [] + async getStationLicenses() { + let params = { + StationName: this.validateForm.value.name, + OrganizationUnitId: String(sessionStorage.getItem('planAdminOrid')), + IsContainsChildren: 'true', + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, + // Sorting: ' BuildingBasicInfo.Id asc' + } + this.tableSpin = true + await new Promise((resolve, reject) => { + this.http.get('/api/services/app/StationValidityLicense/GetStationLicenses', { + params: params + }).subscribe((data: any) => { + this.totalCount = data.result.totalCount + let arr = [] + data.result.data.forEach(element => { + let keyArr = Object.keys(element); + let valueArr = Object.values(element); + let newElement = (keyArr as any).zip(valueArr, (a, b) => { return { name: a, value: b } }); + + //修改排头 + let newArr = [] + for (let index = 0; index < newElement.length; index++) { + const item = newElement[index]; + if (item.name == '省公司') { + newArr[0] = item + newElement.splice(index--, 1) + } + if (item.name == '区域') { + newArr[1] = item + newElement.splice(index--, 1) + } + if (item.name == '油站名称') { + newArr[2] = item + newElement.splice(index--, 1) + } + } + let atLastArr = newArr.concat(newElement); + arr.push(atLastArr) + + }); + + + this.list = this.list.concat(arr); + this.list = [...this.list] + console.log('证照表格', this.list) + this.tableSpin = false + + setTimeout(() => { + let tableHeader = this.element.nativeElement.querySelector(`.ant-table-header`).clientHeight + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - tableHeader - 30) + 'px' + }, 0); + + + + resolve(data) + }) + }) + } + + //父组件调用子组件方法 + public onChildMethod() { + this.getStationLicenses() + } + + + lookDetails(i) { + console.log(i) + let params = { + Id: i.licenseId + } + this.http.get('/api/services/app/StationValidityLicense/Get', { params: params }).subscribe((data:any) => { + console.log('证照信息', data) + const modal = this.modal.create({ + nzContent: DetailsUpdateCategoryComponent, + 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: data.result + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + }) + + + } +} diff --git a/src/app/pipes/type.pipe.ts b/src/app/pipes/type.pipe.ts new file mode 100644 index 0000000..40610c1 --- /dev/null +++ b/src/app/pipes/type.pipe.ts @@ -0,0 +1,36 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ name: 'auditStatus' }) +export class auditStatusPipe implements PipeTransform { + transform(value: number): string { + let arr = ['未提交审核', '审核中', '审核通过', '审核驳回', '已撤销审核', '审核完成'] + return arr[value] + } +} + +// 通知内容 +@Pipe({ name: 'notificationContent' }) +export class notificationContent implements PipeTransform { + transform(value: number): string { + let arr = ['有效期', '年检'] + return arr[value] + } +} + +// 通知状态 +@Pipe({ name: 'licenseViolationType' }) +export class licenseViolationType implements PipeTransform { + transform(value: number): string { + let arr = ['无效', '办理提醒', '临期提醒', '逾期报警'] + return arr[value] + } +} + +// 处置状态 +@Pipe({ name: 'handleState' }) +export class handleState implements PipeTransform { + transform(value: number): string { + let arr = ['未启动', '已启动', '已关闭', '已延期'] + return arr[value] + } +} \ No newline at end of file diff --git a/src/app/system-management/navigation/navigation.component.html b/src/app/system-management/navigation/navigation.component.html index 96453ce..b2ac420 100644 --- a/src/app/system-management/navigation/navigation.component.html +++ b/src/app/system-management/navigation/navigation.component.html @@ -18,8 +18,8 @@
  • 角色管理
  • 分析主机管理
  • 推送管理
  • - - +
  • 更新类证照管理
  • +
  • 档案类证照管理
  • diff --git a/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html b/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html index 8f177ee..7983bdb 100644 --- a/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html +++ b/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html @@ -24,5 +24,11 @@ + + 是否年检 + + + + \ No newline at end of file diff --git a/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.ts b/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.ts index 14a809b..ca3640d 100644 --- a/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.ts +++ b/src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.ts @@ -18,7 +18,8 @@ export class AddUpdateOfLicenseComponent implements OnInit { this.validateForm = this.fb.group({ name: [null, [Validators.required]], handleRemindDays: [90, [Validators.required]], - closingRemindDays: [30, [Validators.required]] + closingRemindDays: [30, [Validators.required]], + isYearlyCheck: [true, [Validators.required]] }); } destroyModal(): void { diff --git a/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html b/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html index 8f177ee..7983bdb 100644 --- a/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html +++ b/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html @@ -24,5 +24,11 @@ + + 是否年检 + + + + \ No newline at end of file diff --git a/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.ts b/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.ts index f96e458..13fd904 100644 --- a/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.ts +++ b/src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.ts @@ -18,7 +18,8 @@ export class EditUpdateOfLicenseComponent implements OnInit { this.validateForm = this.fb.group({ name: [this.data.licenseName, [Validators.required]], handleRemindDays: [this.data.handleRemindDays, [Validators.required]], - closingRemindDays: [this.data.closingRemindDays, [Validators.required]] + closingRemindDays: [this.data.closingRemindDays, [Validators.required]], + isYearlyCheck: [this.data.isYearlyCheck, [Validators.required]] }); } destroyModal(): void { diff --git a/src/app/system-management/update-of-license/update-of-license.component.html b/src/app/system-management/update-of-license/update-of-license.component.html index 2dcaaf6..49b64d4 100644 --- a/src/app/system-management/update-of-license/update-of-license.component.html +++ b/src/app/system-management/update-of-license/update-of-license.component.html @@ -9,12 +9,14 @@
    - +
    + @@ -23,6 +25,7 @@ +
    序号 + {{item.name}} +
    {{key + 1}} + + + + {{i.value.validityType}} + + + + {{i.value}} + + + + / + + +
    +
    + +
    加油站名称 +
    区域所属公司联系人联系电话油站等级经营品类油机数量车道数量油罐容积操作
    +
    + +
    + {{item.stationName}} +
    {{item.locationName}}{{item.companyName}}{{item.leaderName}}{{item.leaderContact}}{{item.stationLevel}}{{item.sellVariety}}{{item.gasStationCount}}{{item.laneCount}} + {{item.tankVolume}} + {{item.tankVolume ? 'm³' : null}} + + 查看 +
    -
    - -
    加油站名称 -
    区域所属公司联系人联系电话油站等级经营品类油机数量车道数量油罐容积操作
    -
    - -
    - {{item.stationName}} -
    {{item.locationName}}{{item.companyName}}{{item.leaderName}}{{item.leaderContact}}{{item.stationLevel}}{{item.sellVariety}}{{item.gasStationCount}}{{item.laneCount}} - {{item.tankVolume}} - {{item.tankVolume ? 'm³' : null}} - - 查看 -
    序号 + {{item.name}} +
    {{key + 1}} + + + + {{i.value.endDate | date:"yyyy-MM-dd"}} + + + + {{i.value}} + + + + + / + + +
    更新类证件 办理提醒时间 临期提醒时间是否年检 操作
    {{data.licenseName}} {{data.handleRemindDays}}天 {{data.closingRemindDays}}天{{data.isYearlyCheck ? '是' : '否'}} 编辑 删除 diff --git a/src/app/system-management/update-of-license/update-of-license.component.ts b/src/app/system-management/update-of-license/update-of-license.component.ts index 4517a3e..19df34e 100644 --- a/src/app/system-management/update-of-license/update-of-license.component.ts +++ b/src/app/system-management/update-of-license/update-of-license.component.ts @@ -52,7 +52,8 @@ export class UpdateOfLicenseComponent implements OnInit { let body = { licenseName: instance.validateForm.value.name, handleRemindDays: instance.validateForm.value.handleRemindDays, - closingRemindDays: instance.validateForm.value.closingRemindDays + closingRemindDays: instance.validateForm.value.closingRemindDays, + isYearlyCheck: instance.validateForm.value.isYearlyCheck } this.http.post('/api/services/app/ValidityLicenseType/Create', body).subscribe(data => { resolve(data) @@ -91,7 +92,8 @@ export class UpdateOfLicenseComponent implements OnInit { id: item.id, licenseName: instance.validateForm.value.name, handleRemindDays: instance.validateForm.value.handleRemindDays, - closingRemindDays: instance.validateForm.value.closingRemindDays + closingRemindDays: instance.validateForm.value.closingRemindDays, + isYearlyCheck: instance.validateForm.value.isYearlyCheck } this.http.put('/api/services/app/ValidityLicenseType/Update', body).subscribe(data => { resolve(data) diff --git a/src/theme.less b/src/theme.less index eb9a8eb..286d270 100644 --- a/src/theme.less +++ b/src/theme.less @@ -8,7 +8,6 @@ .greyColor { color: #5D687A; cursor: not-allowed; - // pointer-events: none; } .yellowColor { @@ -187,6 +186,17 @@ -webkit-border-radius: 0px; -webkit-font-size: 16px !important; } + + + .ant-select-selection-item { + background: #143c61; + color: #fff; + } + + .ant-select-selection-item-remove { + color: #fff; + } + } @@ -205,7 +215,8 @@ #editupdatecategory, #detailsupdatecategory, #editfilecategory, -#detailsfilecategory { +#detailsfilecategory, +#inform { ::-webkit-input-placeholder { /* WebKit browsers */ color: #345d85; @@ -377,8 +388,7 @@ } .ant-tree .ant-tree-node-content-wrapper { - padding: 2px 20px; - // margin-left: 30px; + padding: 2px 15px; } nz-tree { @@ -418,6 +428,7 @@ border-bottom: none; padding: 0; color: #23D9FF; + line-height: 28px; } .ant-table-tbody>tr { @@ -457,6 +468,29 @@ } } +//蓝色 表格 tree-通知时间 + +.informTime { + + + + .ant-table-thead>tr { + border: 0px; + box-shadow: none !important; + } + + .ant-table-thead>tr>th { + text-align: center; + border: 1px solid rgba(35, 217, 255, 0.4); + } + + .ant-table-tbody>tr>td { + text-align: center; + } + + +} + #stationPlanBox { nz-table { width: 96%;