From 413846a8a3712bf9427d7a37d0f1ec481f94c616 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Mon, 9 May 2022 10:34:06 +0800 Subject: [PATCH 01/20] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E8=AF=81=E7=85=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/home/home.component.html | 4 ++-- .../system-management/navigation/navigation.component.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index e0a1bcd..3d367ba 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -30,9 +30,9 @@
  • 预警记录
  • - + 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 @@
  • 角色管理
  • 分析主机管理
  • 推送管理
  • - - +
  • 更新类证照管理
  • +
  • 档案类证照管理
  • From ff9e71c3c2b10602d579046d85eb229cddead227 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Mon, 9 May 2022 16:27:40 +0800 Subject: [PATCH 02/20] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E5=AE=A1=E6=89=B9?= =?UTF-8?q?=E4=B9=8B=E5=AE=A1=E6=89=B9=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-inform-time.component.html | 1 + .../audit-inform-time.component.scss | 0 .../audit-inform-time.component.ts | 15 ++ .../audit-dispose.component.html | 37 ++++ .../audit-dispose.component.scss | 91 ++++++++++ .../audit-dispose/audit-dispose.component.ts | 51 ++++++ .../audit/audit-ing/audit-ing.component.html | 39 +++++ .../audit/audit-ing/audit-ing.component.scss | 15 ++ .../audit/audit-ing/audit-ing.component.ts | 54 ++++++ .../audit/audit-nav/audit-nav.component.html | 18 ++ .../audit/audit-nav/audit-nav.component.scss | 76 +++++++++ .../audit/audit-nav/audit-nav.component.ts | 21 +++ .../audit-record/audit-record.component.html | 1 + .../audit-record/audit-record.component.scss | 0 .../audit-record/audit-record.component.ts | 15 ++ .../criminal-records-admin.component.html | 2 +- .../criminal-records.component.html | 2 +- src/app/pages/home/home.component.html | 3 + .../license/nav-bar/nav-bar.component.scss | 2 +- src/app/pages/pages-routing.module.ts | 5 +- src/app/pages/pages.module.ts | 12 +- .../file-license-list.component.html | 1 + .../file-license-list.component.scss | 0 .../file-license-list.component.ts | 15 ++ .../oil-station-list.component.html | 77 +++++++++ .../oil-station-list.component.scss | 43 +++++ .../oil-station-list.component.ts | 123 ++++++++++++++ .../plan-admin/plan-admin.component.html | 89 ++-------- .../plan-admin/plan-admin.component.scss | 160 ++++++++++++------ .../pages/plan-admin/plan-admin.component.ts | 143 ++++++---------- .../update-license-list.component.html | 87 ++++++++++ .../update-license-list.component.scss | 62 +++++++ .../update-license-list.component.ts | 123 ++++++++++++++ src/theme.less | 3 +- 34 files changed, 1159 insertions(+), 227 deletions(-) create mode 100644 src/app/pages/audit/audit-inform-time/audit-inform-time.component.html create mode 100644 src/app/pages/audit/audit-inform-time/audit-inform-time.component.scss create mode 100644 src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts create mode 100644 src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html create mode 100644 src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.scss create mode 100644 src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts create mode 100644 src/app/pages/audit/audit-ing/audit-ing.component.html create mode 100644 src/app/pages/audit/audit-ing/audit-ing.component.scss create mode 100644 src/app/pages/audit/audit-ing/audit-ing.component.ts create mode 100644 src/app/pages/audit/audit-nav/audit-nav.component.html create mode 100644 src/app/pages/audit/audit-nav/audit-nav.component.scss create mode 100644 src/app/pages/audit/audit-nav/audit-nav.component.ts create mode 100644 src/app/pages/audit/audit-record/audit-record.component.html create mode 100644 src/app/pages/audit/audit-record/audit-record.component.scss create mode 100644 src/app/pages/audit/audit-record/audit-record.component.ts create mode 100644 src/app/pages/plan-admin/file-license-list/file-license-list.component.html create mode 100644 src/app/pages/plan-admin/file-license-list/file-license-list.component.scss create mode 100644 src/app/pages/plan-admin/file-license-list/file-license-list.component.ts create mode 100644 src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html create mode 100644 src/app/pages/plan-admin/oil-station-list/oil-station-list.component.scss create mode 100644 src/app/pages/plan-admin/oil-station-list/oil-station-list.component.ts create mode 100644 src/app/pages/plan-admin/update-license-list/update-license-list.component.html create mode 100644 src/app/pages/plan-admin/update-license-list/update-license-list.component.scss create mode 100644 src/app/pages/plan-admin/update-license-list/update-license-list.component.ts 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..4b680ee --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.html @@ -0,0 +1 @@ +

    audit-inform-time works!

    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..e69de29 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..059841e --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-inform-time.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-audit-inform-time', + templateUrl: './audit-inform-time.component.html', + styleUrls: ['./audit-inform-time.component.scss'] +}) +export class AuditInformTimeComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} 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..4715ade --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html @@ -0,0 +1,37 @@ +
    +
    +
    + 处置 +
    + +
    + +
    +

    山东省某中化公司-淄博区域-淄博市第十六加油站

    +
    +

    证件名称:   营业执照

    +
    +

    证件编号:   Z201800041501

    +
    +

    证件有效期:   2018.12.02—2025.01.12

    +
    +

    办理类型:   年度公示

    +
    +

    有效期类型:   1523天

    +
    +

    是否年检:   是

    +
    +

    证件图片:   

    +
    +

    审批意见:

    + +
    + + +
    +
    + + +
    \ 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..42d0e24 --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts @@ -0,0 +1,51 @@ +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'; + + +@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) { } + + + ngOnInit(): void { + } + + + destroyModal() { + this.modal.destroy(); + } + ok() { + this.modal.triggerOk() + } + //查看图片 + viewImg(url) { + // url.split('?')[0] + 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); + } + +} 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..1536bd2 --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -0,0 +1,39 @@ +
    +
    + + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + 操作 + + + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + + 处置 + 详情 + + + + + +
    +
    \ 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..78e6ac7 --- /dev/null +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -0,0 +1,54 @@ +import { Component, OnInit, ViewContainerRef } from '@angular/core'; +import { NzModalService } from 'ng-zorro-antd/modal'; +import { Observable, fromEvent } from 'rxjs'; +import { debounceTime } from 'rxjs/operators'; +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) { } + 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] + + 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' + }); + } + + + + dispose(item) { + console.log('item', item) + const modal = this.modal.create({ + nzContent: AuditDisposeComponent, + 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 () => { + + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(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..509ec51 --- /dev/null +++ b/src/app/pages/audit/audit-nav/audit-nav.component.html @@ -0,0 +1,18 @@ +
    +
    +
    + + +
    +
    +
    + + + +
    +
    \ 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..e787789 --- /dev/null +++ b/src/app/pages/audit/audit-nav/audit-nav.component.ts @@ -0,0 +1,21 @@ +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 + } + ngOnInit(): void { + } + +} 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..7842d37 --- /dev/null +++ b/src/app/pages/audit/audit-record/audit-record.component.html @@ -0,0 +1 @@ +

    audit-record works!

    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..e69de29 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..263b4eb --- /dev/null +++ b/src/app/pages/audit/audit-record/audit-record.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-audit-record', + templateUrl: './audit-record.component.html', + styleUrls: ['./audit-record.component.scss'] +}) +export class AuditRecordComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/criminal-records-admin/criminal-records-admin.component.html b/src/app/pages/criminal-records-admin/criminal-records-admin.component.html index b5e5c4d..3df6368 100644 --- a/src/app/pages/criminal-records-admin/criminal-records-admin.component.html +++ b/src/app/pages/criminal-records-admin/criminal-records-admin.component.html @@ -94,7 +94,7 @@ --> - + diff --git a/src/app/pages/criminal-records/criminal-records.component.html b/src/app/pages/criminal-records/criminal-records.component.html index 3579eb5..d31c94d 100644 --- a/src/app/pages/criminal-records/criminal-records.component.html +++ b/src/app/pages/criminal-records/criminal-records.component.html @@ -72,7 +72,7 @@ - + diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index 3d367ba..a99a790 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -19,6 +19,9 @@
  • 预警记录
  • +
  • + 审批 +
  • 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/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..de22d3d 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -71,11 +71,19 @@ 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'; @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], imports: [ @@ -119,7 +127,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], 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..7f0f14f --- /dev/null +++ b/src/app/pages/plan-admin/file-license-list/file-license-list.component.html @@ -0,0 +1 @@ +

    file-license-list works!

    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..e69de29 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..78c6d9d --- /dev/null +++ b/src/app/pages/plan-admin/file-license-list/file-license-list.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-file-license-list', + templateUrl: './file-license-list.component.html', + styleUrls: ['./file-license-list.component.scss'] +}) +export class FileLicenseListComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} 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..b4e7bd7 --- /dev/null +++ b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.html @@ -0,0 +1,77 @@ +
    + +
    + + + + +
    + +
    加油站名称 + + 区域 + 所属公司 + 联系人 + 联系电话 + 油站等级 + 经营品类 + 油机数量 + 车道数量 + 油罐容积 + 操作 + + + + + +
    + +
    + {{item.stationName}} + + {{item.locationName}} + {{item.companyName}} + {{item.leaderName}} + {{item.leaderContact}} + {{item.stationLevel}} + {{item.sellVariety}} + {{item.gasStationCount}} + {{item.laneCount}} + + {{item.tankVolume}} + {{item.tankVolume ? 'm³' : null}} + + + 查看 + + + +
    + +
    +
    \ 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..4248759 --- /dev/null +++ b/src/app/pages/plan-admin/oil-station-list/oil-station-list.component.scss @@ -0,0 +1,43 @@ +.search { + box-sizing: border-box; + padding-left: 22px; + padding-right: 33px; + width: 100%; + height: 32px; + margin: 12px 0; + + 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; + } + } +} +.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..acc9bb1 100644 --- a/src/app/pages/plan-admin/plan-admin.component.ts +++ b/src/app/pages/plan-admin/plan-admin.component.ts @@ -8,58 +8,52 @@ 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) { + console.log('选择tab') + 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) { + console.log('选择tab') + setTimeout(() => { + this.updateLicenseListComponent.list = [] + this.updateLicenseListComponent.SkipCount = '0' + this.updateLicenseListComponent.onChildMethod() + }, 0); } - this.list = [] - this.SkipCount = '0' - this.getGasStation() } + + //获取所有组织机构 nodes: any = [] nzExpandAll = false @@ -67,7 +61,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 +87,42 @@ 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) { + console.log('选择tab') + setTimeout(() => { + this.oilStationListComponent.list = [] + this.oilStationListComponent.SkipCount = '0' + this.oilStationListComponent.onChildMethod() + }, 0); + } + if (this.selectedTab == 1) { + console.log('选择tab') + setTimeout(() => { + this.updateLicenseListComponent.list = [] + this.updateLicenseListComponent.SkipCount = '0' + this.updateLicenseListComponent.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..866bbb2 --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-list.component.html @@ -0,0 +1,87 @@ +
    + +
    + + + + +
    + +
    加油站名称 + + 区域 + 所属公司 + 联系人 + 联系电话 + 油站等级 + 经营品类 + 油机数量 + 车道数量 + 油罐容积 + 操作 + + + + + +
    + +
    + {{item.stationName}} + + {{item.locationName}} + {{item.companyName}} + {{item.leaderName}} + {{item.leaderContact}} + {{item.stationLevel}} + {{item.sellVariety}} + {{item.gasStationCount}} + {{item.laneCount}} + + {{item.tankVolume}} + {{item.tankVolume ? 'm³' : null}} + + + 查看 + + + +
    + +
    +
    \ 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..1a029fe --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-list.component.scss @@ -0,0 +1,62 @@ +.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/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..d33506c --- /dev/null +++ b/src/app/pages/plan-admin/update-license-list/update-license-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-update-license-list', + templateUrl: './update-license-list.component.html', + styleUrls: ['./update-license-list.component.scss'] +}) +export class UpdateLicenseListComponent 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/theme.less b/src/theme.less index eb9a8eb..aef831b 100644 --- a/src/theme.less +++ b/src/theme.less @@ -377,8 +377,7 @@ } .ant-tree .ant-tree-node-content-wrapper { - padding: 2px 20px; - // margin-left: 30px; + padding: 2px 15px; } nz-tree { From 5d60583229b306db4ab72131bca438bd7d1f53ec Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Tue, 10 May 2022 10:09:33 +0800 Subject: [PATCH 03/20] =?UTF-8?q?=E6=A1=A3=E6=A1=88=E7=B1=BB=E8=AF=81?= =?UTF-8?q?=E7=85=A7=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../details-file-category.component.html | 38 +++++------ .../details-file-category.component.ts | 31 ++++++++- .../edit-file-category.component.html | 11 ++-- .../edit-file-category.component.ts | 6 +- .../file-category.component.html | 25 +++++-- .../file-category/file-category.component.ts | 66 ++++++++++++------- 6 files changed, 113 insertions(+), 64 deletions(-) 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 42ed216..fc1520f 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 @@ -7,42 +7,34 @@
    -

    证件名称:   建设用地规划许可证

    +

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

    -

    有效期类型:   1523天

    +

    有效期类型:   不适用

    -

    是否年检:   是

    -
    -

    证件图片:   

    + +

    证件图片:   

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

    - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 - - - 2022.04.02 - 审核完成 + + {{item.creationTime | date:"yyyy/MM/dd"}} + + 审核中 + 审核通过 + 审核驳回 + 已撤销审核 + 审核完成 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 878358a..d6a6737 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 @@ -4,6 +4,7 @@ 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'; + @Component({ selector: 'app-details-file-category', templateUrl: './details-file-category.component.html', @@ -12,19 +13,42 @@ import Viewer from 'viewerjs'; export class DetailsFileCategoryComponent implements OnInit { @Input() data?: any; - constructor(private modal: NzModalRef) { } - + constructor(private modal: NzModalRef, private http: HttpClient) { } ngOnInit(): void { + this.getAuditLogging() } + auditList: any[] = []; + //获取审核记录 + getAuditLogging() { + if (this.data.auditLogId == 0) { + 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' }); } + //查看图片 viewImg(url) { - // url.split('?')[0] let dom = document.getElementById(`viewerjs`) let pObjs = dom.childNodes; let node = document.createElement("img") @@ -42,4 +66,5 @@ export class DetailsFileCategoryComponent implements OnInit { node.click(); }, 0); } + } 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 836a1cd..a6d5ad0 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 @@ -6,7 +6,7 @@
    -

    证件名称: 建设用地规划许可证

    +

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

    @@ -14,8 +14,10 @@ - - + + + + @@ -24,8 +26,7 @@
    - + diff --git a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts index 3701930..825b327 100644 --- a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts +++ b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts @@ -23,12 +23,14 @@ export class EditFileCategoryComponent implements OnInit { type: [null, [Validators.required]] }); this.data2 = JSON.parse(JSON.stringify(this.data)) + this.validatyType = (this.data2.validatyType).toString() + console.log(this.data2) } + validatyType: string isLongTerm = false imageUrl = '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg' validityChange($event) { - console.log($event) this.isLongTerm = $event } @@ -70,6 +72,7 @@ export class EditFileCategoryComponent 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') }); @@ -85,6 +88,7 @@ export class EditFileCategoryComponent implements OnInit { let dataObj = value as any; let filePath = dataObj.filePath this.imageUrl = filePath + this.data2.imageUrl = filePath console.log('上传成功', filePath) }); 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 3839e04..2d5eec8 100644 --- a/src/app/pages/license/file-category/file-category.component.html +++ b/src/app/pages/license/file-category/file-category.component.html @@ -17,19 +17,30 @@ - 证件名称 + {{item.licenseTypeName || ''}} + + + + + 不适用 + + + - 有效期类型 + {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 - + + 审核中 + 审核通过 + 审核驳回 + 未提交审核 + 审核完成 - 提交时间 - 审核状态 编辑 详情 - 提交审核 + 撤销审核 + 提交审核 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 052d489..4af5b3e 100644 --- a/src/app/pages/license/file-category/file-category.component.ts +++ b/src/app/pages/license/file-category/file-category.component.ts @@ -17,7 +17,7 @@ export class FileCategoryComponent implements OnInit { constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient) { } 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 = []; //tabelData tableScrollHeight ngOnInit(): void { @@ -26,10 +26,21 @@ export class FileCategoryComponent implements OnInit { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' }); + this.getStationList() } + + //获取当前油站档案类证照 + getStationList() { + 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.list = info.result + console.log(info.result) + }) + } + //查看图片 viewImg(url) { - // url.split('?')[0] let dom = document.getElementById(`viewerjs`) let pObjs = dom.childNodes; let node = document.createElement("img") @@ -49,11 +60,10 @@ export class FileCategoryComponent implements OnInit { } dispose() { - console.log('处置') + } edit(item) { - console.log('item', item) const modal = this.modal.create({ nzContent: EditFileCategoryComponent, nzViewContainerRef: this.viewContainerRef, @@ -71,34 +81,21 @@ export class FileCategoryComponent implements OnInit { nzFooter: null, nzClosable: false, 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 - } - // this.http.put('/api/services/app/FireEquipment/Update', body).subscribe(data => { - // resolve(data) - // this.message.create('success', '修改成功!'); - // return true - // }) + await new Promise(resolve => { + instance.data2.validatyType = Number(instance.validatyType) + this.http.post('/api/services/app/StationFileLicense/Create', instance.data2).subscribe(data => { + resolve(data); + this.getStationList(); + this.message.create('success', '修改成功!'); + return true }) - } else { - this.message.create('warning', '请填写完整!'); - return false - } + }) } }); const instance = modal.getContentComponent(); modal.afterClose.subscribe(result => { }); } details(item) { - console.log('item', item) const modal = this.modal.create({ nzContent: DetailsFileCategoryComponent, nzViewContainerRef: this.viewContainerRef, @@ -122,4 +119,23 @@ export class FileCategoryComponent implements OnInit { const instance = modal.getContentComponent(); modal.afterClose.subscribe(result => { }); } + + //提交审核 + submitReview(item){ + let params = { id: item.id } + this.http.post('/api/services/app/StationFileLicense/Commit', {},{params}).subscribe(data => { + this.message.create('success', '提交审核成功!'); + this.getStationList(); + }) + } + + //撤销审核 + cancelReview(item){ + let params = { id: item.id } + this.http.post('/api/services/app/StationFileLicense/Uncommit', {},{params}).subscribe(data => { + this.message.create('success', '撤销审核成功!'); + this.getStationList(); + }) + } + } From dd67f437406f3353214f79983a5910360284d925 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Wed, 11 May 2022 14:26:49 +0800 Subject: [PATCH 04/20] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=B1=BB=E8=AF=81?= =?UTF-8?q?=E7=85=A7=E5=AF=B9=E6=8E=A5=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../edit-file-category.component.html | 8 +- .../file-category.component.html | 3 +- .../details-update-category.component.html | 46 +++--- .../details-update-category.component.ts | 59 +++++++- .../edit-update-category.component.html | 38 +++-- .../edit-update-category.component.ts | 101 ++++++++++++-- .../update-category.component.html | 43 +++--- .../update-category.component.ts | 132 ++++++++++-------- 8 files changed, 301 insertions(+), 129 deletions(-) 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..4d4386e 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 @@ -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..660c018 100644 --- a/src/app/pages/license/file-category/file-category.component.html +++ b/src/app/pages/license/file-category/file-category.component.html @@ -40,7 +40,8 @@ 编辑 详情 撤销审核 - 提交审核 + 提交审核 + 审核完成 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..f79a73b 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,44 @@
    -

    证件名称:   营业执照

    +

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

    -

    证件编号:   Z201800041501

    +

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

    -

    证件有效期:   2018.12.02—2025.01.12

    +

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

    -

    办理类型:   年度公示

    +

    办理类型:   {{data.handleType || ''}}

    -

    有效期类型:   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"}} + + 审核中 + 审核通过 + 审核驳回 + 已撤销审核 + 审核完成 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..f908388 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,7 @@ 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-details-update-category', @@ -12,19 +13,72 @@ 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 == 0) { + 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' }); } + + //获取文件格式 + 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 +96,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..1077ce0 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,32 @@

    证件有效期*

    -

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

    办理类型

    - - + + + + + + + + + + @@ -48,13 +56,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..18c4222 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,113 @@ 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,) { } + + data2: any; //深拷贝data + isLongTermTime: Date = null; // 限期 日期 + isNoLongTermTime: Date[] = []; //长期 日期 + typeList: string[] = []; //办理类型 select多选 data - 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)) + } + // 办理类型 + if (this.data2.handleType) { + this.typeList = (this.data2.handleType).split('/') + } + + 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 +154,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 +170,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 +178,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") 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..618cab2 100644 --- a/src/app/pages/license/update-category/update-category.component.html +++ b/src/app/pages/license/update-category/update-category.component.html @@ -22,28 +22,39 @@ - 证件名称 + {{item.licenseTypeName || ''}} + + {{item.licenseCode || ''}} + {{item.validityEndTime | date:"yyyy/MM/dd"}} + + + + + + {{item.validityDays || 0}}天 + {{item.handleType}} + + {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 + + + 审核中 + 审核通过 + 审核驳回 + 未提交审核 + 审核完成 - 证件编号 - 证件有效期 - - - + + 办理提醒 + 临期提醒 + 逾期报警 - 有效期类型 - 办理类型 - 是否年检 - 提交时间 - 审核状态 - 预警状态 编辑 详情 - 提交审核 + 撤销审核 + 提交审核 + 审核完成 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..1380759 100644 --- a/src/app/pages/license/update-category/update-category.component.ts +++ b/src/app/pages/license/update-category/update-category.component.ts @@ -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,34 @@ 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() { + 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.list = info.result + console.log(info.result) + }) + } + + //获取文件格式 + 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 +72,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 +113,24 @@ 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 - // }) + // 办理类型 + if (instance.typeList.length) { + body.handleType = instance.typeList.join("/") + } + 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 +141,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 +166,23 @@ export class UpdateCategoryComponent implements OnInit { const instance = modal.getContentComponent(); modal.afterClose.subscribe(result => { }); } + + //提交审核 + submitReview(item){ + 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(); + }) + } + } From ba3b058cfc3ee8f63bfecbd60abe71df36977353 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 11 May 2022 14:50:00 +0800 Subject: [PATCH 05/20] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E6=B2=B9=E7=AB=99?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=8F=90=E4=BA=A4=E5=AE=A1=E6=A0=B8;?= =?UTF-8?q?=E5=AE=A1=E6=89=B9=E4=B9=8B=E9=80=9A=E7=9F=A5=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-details-inform-time.component.html | 30 ++ .../audit-details-inform-time.component.scss | 65 ++++ .../audit-details-inform-time.component.ts | 18 ++ .../audit-inform-time.component.html | 44 ++- .../audit-inform-time.component.scss | 15 + .../audit-inform-time.component.ts | 70 ++++- .../edit-inform-time.component.html | 54 ++++ .../edit-inform-time.component.scss | 103 +++++++ .../edit-inform-time.component.ts | 38 +++ .../audit-record/audit-record.component.html | 122 +++++++- .../audit-record/audit-record.component.scss | 67 ++++ .../audit-record/audit-record.component.ts | 192 +++++++++++- .../criminal-records-admin.component.ts | 2 +- .../oil-station-info.component.html | 39 ++- .../oil-station-info.component.scss | 34 ++- .../oil-station-info.component.ts | 287 ++++++++++-------- src/app/pages/pages.module.ts | 7 +- src/app/pipes/type.pipe.ts | 9 + src/theme.less | 26 +- 19 files changed, 1051 insertions(+), 171 deletions(-) create mode 100644 src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html create mode 100644 src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.scss create mode 100644 src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts create mode 100644 src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.html create mode 100644 src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss create mode 100644 src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts create mode 100644 src/app/pipes/type.pipe.ts 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..3e0e8e3 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html @@ -0,0 +1,30 @@ +
    +
    +
    + 详情 +
    + +
    + +
    +

    山东省某中化公司

    +
    +

    + 办理提醒时间:修改时间 80天 + 默认时间 90天 +

    +
    +

    + 临期提醒时间:修改时间 15天 + 默认时间 30天 +

    +
    +

    修改说明:修改原因陈述修改原因陈述,修改原因陈述。

    +
    +

    审核状态:审核驳回

    +
    +

    驳回说明:不同意

    +
    + + +
    \ 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..52f0e6b --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.ts @@ -0,0 +1,18 @@ +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) { } + + ngOnInit(): void { + } + 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 index 4b680ee..4650790 100644 --- 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 @@ -1 +1,43 @@ -

    audit-inform-time works!

    +
    +
    + + + + + 审批类型 + + 办理提醒时间 + 临期提醒时间 + 提交审核时间 + 审核状态 + 操作 + + + 默认时间 + 现用时间 + 默认时间 + 现用时间 + + + + + + 营业执照 + + 90天 + 90天 + 90天 + 90天 + 时间 + 审批状态 + + 编辑 + 审核详情 + + + + + +
    +
    \ 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 index e69de29..aaca580 100644 --- 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 @@ -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 index 059841e..310cda6 100644 --- 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 @@ -1,4 +1,10 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit, ViewContainerRef } from '@angular/core'; +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', @@ -7,9 +13,69 @@ import { Component, OnInit } from '@angular/core'; }) export class AuditInformTimeComponent implements OnInit { - constructor() { } + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } + 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] + tableScrollHeight ngOnInit(): void { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 85) + 'px' + // 页面监听 + fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { + this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 85) + 'px' + }); } + + + edit(item) { + console.log('item', item) + 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 () => { + + } + }); + 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 => { }); + } } 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..8025296 --- /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..58a90a1 --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.scss @@ -0,0 +1,103 @@ +.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; + + 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..b138e4d --- /dev/null +++ b/src/app/pages/audit/audit-inform-time/edit-inform-time/edit-inform-time.component.ts @@ -0,0 +1,38 @@ +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'; +@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 modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } + + + data2 + ngOnInit(): void { + this.validateForm = this.fb.group({ + time1: [null, [Validators.required]], + time2: [null, [Validators.required]], + explain: [null] + }); + this.data2 = JSON.parse(JSON.stringify(this.data)) + } + + + destroyModal() { + this.modal.destroy({ data: 'this the result data' }); + } + ok() { + this.modal.triggerOk() + } + + +} diff --git a/src/app/pages/audit/audit-record/audit-record.component.html b/src/app/pages/audit/audit-record/audit-record.component.html index 7842d37..fed8094 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.html +++ b/src/app/pages/audit/audit-record/audit-record.component.html @@ -1 +1,121 @@ -

    audit-record works!

    +
    + +
    + + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + 操作 + + + + + + 审批类型 + + 审批信息 + 加油站名称 + 区域 + 省公司 + 提交时间 + 审批状态 + + 详情 + + + + + +
    +
    \ 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 index e69de29..8daef6d 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.scss +++ 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 index 263b4eb..bc1dd22 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.ts +++ b/src/app/pages/audit/audit-record/audit-record.component.ts @@ -1,15 +1,199 @@ -import { Component, OnInit } from '@angular/core'; - +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'; @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 = [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] + + 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() + } + SkipCount + 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.getRecordList() + } + + resetForm(e: MouseEvent): void { + e.preventDefault(); + this.validateForm.reset(); + for (const key in this.validateForm.controls) { + this.validateForm.controls[key].markAsPristine(); + this.validateForm.controls[key].updateValueAndValidity(); + } + this.validateForm.patchValue({ + organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, + datePicker: [this.startdate, this.enddate], + }); + this.list = [] + this.SkipCount = '0' + // this.getViolateRecgordList() + } - constructor() { } - ngOnInit(): void { + //获取所有组织机构 + 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)] + console.log('组织机构列表', this.nodes) + 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 + // console.log('证照类型', arr) + }).catch((error) => { + console.log('证照类型', error) + }) } + + //历史记录列表 + totalCount//列表总数 + tableSpin = false + getRecordList() { + console.log('获得历史记录列表') + let params = { + // Level: this.validateForm.value.level, + // ViolationIds: ViolationIds, + // ViolateArea: this.validateForm.value.site, + // OrganizationUnitId: this.validateForm.value.organization, + // IsContainsChildren: 'true', + // IsHandled: disposalState, + // ViolateTime: this.validateForm.value.datePicker ? [moment(this.validateForm.value.datePicker[0]).format('yyyy-MM-DD'), moment(this.validateForm.value.datePicker[1]).format('yyyy-MM-DD')] : null, + // SkipCount: this.SkipCount, + // MaxResultCount: this.MaxResultCount, + // Positive: this.validateForm.value.misinformation + } + // this.tableSpin = true + // this.http.get('/api/services/app/ViolateRecord/GetAll', { + // params: params + // }).subscribe((data: any) => { + // this.list = this.list.concat(data.result.items); + // this.list = [...this.list] + // this.totalCount = data.result.totalCount + // console.log('违规记录列表', data) + // this.tableSpin = false + // }) + } + + + ngAfterViewInit(): void { + fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件 + if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) { + if (this.totalCount > this.list.length) { + console.log('需要加载数据了', event) + this.SkipCount = String(Number(this.SkipCount) + 50) + this.getRecordList() + } + } + }); + } } 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/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.module.ts b/src/app/pages/pages.module.ts index de22d3d..adbab1d 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -79,11 +79,14 @@ 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 } from '../pipes/type.pipe'; @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, OilStationListComponent, UpdateLicenseListComponent, FileLicenseListComponent, AuditNavComponent, AuditIngComponent, AuditRecordComponent, AuditInformTimeComponent, AuditDisposeComponent], + 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], imports: [ @@ -127,7 +130,7 @@ import { AuditDisposeComponent } from './audit/audit-ing/audit-dispose/audit-dis NzToolTipModule, NzTimelineModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent,AuditDisposeComponent], + entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) diff --git a/src/app/pipes/type.pipe.ts b/src/app/pipes/type.pipe.ts new file mode 100644 index 0000000..b5342d7 --- /dev/null +++ b/src/app/pipes/type.pipe.ts @@ -0,0 +1,9 @@ +import { Pipe, PipeTransform } from '@angular/core'; + +@Pipe({ name: 'auditStatus' }) +export class auditStatusPipe implements PipeTransform { + transform(value: number): string { + let arr = ['未提交审核', '审核中', '审核通过', '审核驳回', '已撤销审核', '审核完成'] + return arr[value] + } +} \ No newline at end of file diff --git a/src/theme.less b/src/theme.less index aef831b..e3c1ede 100644 --- a/src/theme.less +++ b/src/theme.less @@ -205,7 +205,8 @@ #editupdatecategory, #detailsupdatecategory, #editfilecategory, -#detailsfilecategory { +#detailsfilecategory, +#inform { ::-webkit-input-placeholder { /* WebKit browsers */ color: #345d85; @@ -456,6 +457,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%; From 220ca290a5c5defd92cbed470843309eb708b2a7 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 11 May 2022 15:00:09 +0800 Subject: [PATCH 06/20] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=AE=8C=E5=96=84?= =?UTF-8?q?=E8=8F=9C=E5=8D=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/home/home.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts index 59f3030..432761a 100644 --- a/src/app/pages/home/home.component.ts +++ b/src/app/pages/home/home.component.ts @@ -70,7 +70,6 @@ export class HomeComponent implements OnInit { this.isGasStationNav = true this.isGasStationBack = true } else { - this.isGasStationNav = false this.isGasStationBack = false } }); From dcd7d3bd37bb53063ee14e576e524d524120b159 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 11 May 2022 17:02:21 +0800 Subject: [PATCH 07/20] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E8=AF=81=E7=85=A7=20=E7=BB=9F=E8=AE=A1=E8=A1=A8=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../oil-station-list.component.html | 2 +- .../update-license-list.component.html | 60 +++++------- .../update-license-list.component.scss | 23 ++++- .../update-license-list.component.ts | 95 ++++++++++++++----- 4 files changed, 116 insertions(+), 64 deletions(-) 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 index b4e7bd7..ad0cf83 100644 --- 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 @@ -4,7 +4,7 @@ - + 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 index 866bbb2..70b6bb8 100644 --- 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 @@ -15,7 +15,7 @@ - + @@ -37,47 +37,33 @@ [nzScroll]="{ y:tableScrollHeight }" [nzNoResult]='null' nzTableLayout="fixed"> - + - - - - - - - - - - + - - - - - - - - - - - + + 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 index 1a029fe..06cfc17 100644 --- 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 @@ -8,22 +8,26 @@ display: flex; justify-content: space-between; align-items: center; - .legendbox{ + + .legendbox { display: flex; align-items: center; color: #FFFFFF; flex: 1; - .legendItem{ + + .legendItem { display: flex; align-items: center; margin-right: 12px; - div{ + + div { width: 8px; height: 8px; margin-right: 3px; } } } + form { flex: 1; height: 32px; @@ -60,3 +64,16 @@ 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 index d33506c..2f5a97e 100644 --- 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 @@ -1,4 +1,4 @@ -import { Component, OnInit, ViewChild, ElementRef } from '@angular/core'; +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'; @@ -8,6 +8,9 @@ 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', @@ -16,11 +19,13 @@ import { debounceTime } from 'rxjs/operators'; export class UpdateLicenseListComponent 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) { } + 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) @@ -35,12 +40,14 @@ export class UpdateLicenseListComponent implements OnInit { 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() + await this.getStationLicenses() } } }); @@ -53,7 +60,7 @@ export class UpdateLicenseListComponent implements OnInit { } this.list = [] this.SkipCount = '0' - this.getGasStation() + this.getStationLicenses() } resetForm(e: MouseEvent): void { e.preventDefault(); @@ -64,25 +71,13 @@ export class UpdateLicenseListComponent implements OnInit { } this.list = [] this.SkipCount = '0' - this.getGasStation() + this.getStationLicenses() } 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 @@ -93,24 +88,43 @@ export class UpdateLicenseListComponent implements OnInit { orId list: any = [] - async getGasStation() { + 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' + // Sorting: ' BuildingBasicInfo.Id asc' } this.tableSpin = true await new Promise((resolve, reject) => { - this.http.get('/api/services/app/GasStation/GetAll', { + this.http.get('/api/services/app/StationValidityLicense/GetStationLicenses', { params: params }).subscribe((data: any) => { this.totalCount = data.result.totalCount - this.list = this.list.concat(data.result.items); + 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 } }); + arr.push(newElement) + }); + + //排序 + + 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) }) }) @@ -118,6 +132,41 @@ export class UpdateLicenseListComponent implements OnInit { //父组件调用子组件方法 public onChildMethod() { - this.getGasStation() + this.getStationLicenses() + } + + + lookDetails(i) { + console.log(i) + let params = { + Id: i.licenseId + } + this.http.get('/api/services/app/StationValidityLicense/Get', { params: params }).subscribe(data => { + 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 + }, + nzFooter: null, + nzClosable: false, + nzOnOk: async () => { + + } + }); + const instance = modal.getContentComponent(); + modal.afterClose.subscribe(result => { }); + }) + + } } From 0abba86ae21c280a01b27527376a33e9bb2de428 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 12 May 2022 11:07:30 +0800 Subject: [PATCH 08/20] =?UTF-8?q?=E5=AE=A1=E6=89=B9=E5=AF=B9=E6=8E=A5?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-dispose.component.html | 47 +++-- .../audit-dispose/audit-dispose.component.ts | 42 ++++- .../audit/audit-ing/audit-ing.component.html | 30 ++- .../audit/audit-ing/audit-ing.component.ts | 173 +++++++++++++++--- 4 files changed, 235 insertions(+), 57 deletions(-) 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 index 4715ade..14f841f 100644 --- 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 @@ -7,29 +7,38 @@
    -

    山东省某中化公司-淄博区域-淄博市第十六加油站

    -
    -

    证件名称:   营业执照

    -
    -

    证件编号:   Z201800041501

    -
    -

    证件有效期:   2018.12.02—2025.01.12

    -
    -

    办理类型:   年度公示

    -
    -

    有效期类型:   1523天

    -
    -

    是否年检:   是

    +

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

    +
    +

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

    +
    +
    +
    +
    +

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

    +
    +

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

    +
    +

    办理类型:   {{data.getData.handleType || ''}}

    +
    +

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

    +
    +

    是否年检:   

    +
    +
    +

    有效期类型:   不适用

    +
    +
    -

    证件图片:   

    +

    证件图片:    + + +

    审批意见:

    - +
    - - + +
    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 index 42d0e24..db1ccd1 100644 --- 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 @@ -4,6 +4,7 @@ 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({ @@ -14,22 +15,39 @@ import Viewer from 'viewerjs'; export class AuditDisposeComponent implements OnInit { @Input() data?: any; - constructor(private modal: NzModalRef) { } - + constructor(private modal: NzModalRef, private message: NzMessageService) { } + textarea: string = ""; //审批意见 ngOnInit(): void { + console.log(this.data) } destroyModal() { this.modal.destroy(); } - ok() { + + isPass: boolean; + ok(isPass: boolean) { + this.isPass = isPass; this.modal.triggerOk() } + + //获取文件格式 + 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") @@ -48,4 +66,20 @@ export class AuditDisposeComponent implements OnInit { }, 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 index 1536bd2..bb34896 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.html +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -9,7 +9,7 @@ - + @@ -19,17 +19,29 @@ + + + + + + - - - - - - diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts index 78e6ac7..2d7e9e8 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.ts +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -1,8 +1,13 @@ +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 { 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 { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; + @Component({ selector: 'app-audit-ing', templateUrl: './audit-ing.component.html', @@ -10,9 +15,9 @@ import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; }) export class AuditIngComponent implements OnInit { - constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } + 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 { @@ -21,34 +26,152 @@ export class AuditIngComponent implements OnInit { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' }); + this.getStationList() + } + + //获取当前油站档案类证照 + getStationList() { + let data = JSON.parse(sessionStorage.getItem('userdata')); + let params = { + OrganizationUnitId: data.organization.id || "" , + IsContainsChildren: "true", + AuditStatuses: "1", + } + 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 = info.result.items || [] + console.log(this.list) + }) } dispose(item) { - console.log('item', item) - const modal = this.modal.create({ - nzContent: AuditDisposeComponent, - 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 () => { - - } - }); - const instance = modal.getContentComponent(); - modal.afterClose.subscribe(result => { }); + // if (item.auditStatus != 1) { + // return + // } + this.getData(item).then(res=>{ + item.getData = res + const modal = this.modal.create({ + nzContent: AuditDisposeComponent, + 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 () => { + await new Promise(resolve => { + let url + if (item.auditType == 0) { + + } else if (item.auditType == 1) { + + } 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.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) { + + } else if (item.auditType == 1) { + + } else if (item.auditType == 2) { + component = DetailsUpdateCategoryComponent + } else if (item.auditType) { + component = DetailsFileCategoryComponent + } + if (item.getData) { + const modal = this.modal.create({ + nzContent: component, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 450, + nzBodyStyle: { + 'border': '1px solid #91CCFF', + 'border-radius': '0px', + 'padding': '7px', + 'box-shadow': '0 0 8px 0 #fff', + 'background-image': 'linear-gradient(#003665, #000f25)' + }, + nzComponentParams: { + data: item.getData + }, + nzFooter: null, + nzClosable: false, + }); + } else { + this.getData(item).then(res=>{ + item.getData = res + const modal = this.modal.create({ + nzContent: component, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 450, + nzBodyStyle: { + 'border': '1px solid #91CCFF', + 'border-radius': '0px', + 'padding': '7px', + 'box-shadow': '0 0 8px 0 #fff', + 'background-image': 'linear-gradient(#003665, #000f25)' + }, + nzComponentParams: { + data: item.getData + }, + nzFooter: null, + nzClosable: false, + }); + }) + } + } + + //获取证照类data + getData(item) { + let url + if (item.auditType == 0) { + + } else if (item.auditType == 1) { + + } 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) + }) + }) } } From 61984db82aaf9e756f4b068e49d277fd13628066 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 12 May 2022 15:52:13 +0800 Subject: [PATCH 09/20] =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-dispose.component.html | 4 +-- .../audit-dispose/audit-dispose.component.ts | 18 +++++++++++++ .../details-file-category.component.html | 2 +- .../details-file-category.component.ts | 2 +- .../edit-file-category.component.html | 4 +-- .../file-category.component.html | 4 +-- .../file-category/file-category.component.ts | 3 +++ .../details-update-category.component.html | 2 +- .../details-update-category.component.ts | 20 +++++++++++++- .../edit-update-category.component.html | 12 ++------- .../edit-update-category.component.ts | 27 ++++++++++++++----- .../update-category.component.html | 2 +- .../update-category.component.ts | 26 ++++++++++++++---- 13 files changed, 94 insertions(+), 32 deletions(-) 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 index 14f841f..cdff8ed 100644 --- 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 @@ -18,14 +18,14 @@

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

    -

    办理类型:   {{data.getData.handleType || ''}}

    +

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

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

    是否年检:   

    -

    有效期类型:   不适用

    +

    有效期类型:   不适用

    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 index db1ccd1..b5ba90e 100644 --- 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 @@ -5,6 +5,7 @@ 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({ @@ -33,6 +34,23 @@ export class AuditDisposeComponent implements OnInit { this.modal.triggerOk() } + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let name + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? item = element.name : null + }) + }) + name = handleTypeList.join(',') + return name + } + //获取文件格式 getFileType(name: string):string { let suffix 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..da5183d 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}}

    -

    有效期类型:   不适用

    +

    有效期类型:   不适用

    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 4d4386e..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 @@ - + - + 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 660c018..d5aa61f 100644 --- a/src/app/pages/license/file-category/file-category.component.html +++ b/src/app/pages/license/file-category/file-category.component.html @@ -20,9 +20,9 @@ {{item.licenseTypeName || ''}}
    - + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + \ 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 index e69de29..06cfc17 100644 --- 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 @@ -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 index 78c6d9d..0418bb0 100644 --- 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 @@ -1,4 +1,16 @@ -import { Component, OnInit } from '@angular/core'; +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', @@ -7,9 +19,166 @@ import { Component, OnInit } from '@angular/core'; }) export class FileLicenseListComponent implements OnInit { - constructor() { } + 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 index ad0cf83..da7d4ac 100644 --- 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 @@ -1,5 +1,6 @@
    -

    山东省某中化公司

    +

    {{organizationName}}

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

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

    -

    修改说明:修改原因陈述修改原因陈述,修改原因陈述。

    +

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

    -

    审核状态:审核驳回

    +

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

    -

    驳回说明:不同意

    +

    驳回说明:

    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 index 52f0e6b..d2d65a2 100644 --- 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 @@ -10,7 +10,11 @@ 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 index b36aa5e..cd3a5a5 100644 --- 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 @@ -32,7 +32,10 @@
    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 index 15b00ca..fe83c75 100644 --- 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 @@ -1,5 +1,6 @@ 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'; @@ -14,7 +15,7 @@ import { EditInformTimeComponent } from './edit-inform-time/edit-inform-time.com }) export class AuditInformTimeComponent implements OnInit { - constructor(private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } + constructor(private message: NzMessageService, private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } tableSpin = false list = [] @@ -44,7 +45,7 @@ export class AuditInformTimeComponent implements OnInit { this.http.get('/api/services/app/OrganizationValidityLicenseRule/GetCurOrgRules', { params: params }).subscribe((data: any) => { - this.list = this.list.concat(data.result); + this.list = data.result this.list = [...this.list] console.log('时间表格', data) this.tableSpin = false @@ -61,6 +62,11 @@ export class AuditInformTimeComponent implements OnInit { 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, @@ -78,7 +84,7 @@ export class AuditInformTimeComponent implements OnInit { nzFooter: null, nzClosable: false, nzOnOk: async () => { - + this.getTimeList() } }); const instance = modal.getContentComponent(); @@ -109,4 +115,16 @@ export class AuditInformTimeComponent implements OnInit { 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 index 8025296..176eade 100644 --- 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 @@ -47,7 +47,7 @@
    - +
    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 index 58a90a1..4be1a5b 100644 --- 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 @@ -54,13 +54,13 @@ display: flex; flex-direction: column; box-sizing: border-box; - padding:0 6px; + padding: 0 6px; } } .explain { box-sizing: border-box; - padding:0 6px; + padding: 0 6px; textarea { width: 100%; @@ -77,6 +77,8 @@ margin-bottom: 17px; display: flex; justify-content: flex-end; + box-sizing: border-box; + padding: 0 7px; button { border-radius: 0px; 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 index b138e4d..3e4b643 100644 --- 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 @@ -3,6 +3,7 @@ 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', @@ -13,25 +14,53 @@ export class EditInformTimeComponent implements OnInit { @Input() data?: any; validateForm!: FormGroup; - constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } + constructor(private message: NzMessageService, private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private objectsSrv: ObjectsSimpleService) { } - data2 + dataCopy ngOnInit(): void { + this.dataCopy = JSON.parse(JSON.stringify(this.data)) this.validateForm = this.fb.group({ - time1: [null, [Validators.required]], - time2: [null, [Validators.required]], + time1: [this.dataCopy.handleRemindDays, [Validators.required]], + time2: [this.dataCopy.closingRemindDays, [Validators.required]], explain: [null] }); - this.data2 = JSON.parse(JSON.stringify(this.data)) + } - + destroyModal() { this.modal.destroy({ data: 'this the result data' }); + } + + + isLoading = false ok() { - this.modal.triggerOk() + 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', '请填写完整!'); + } + + } From 133521740f3e3790cf0c5dc4745f38b9ecbcc170 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Fri, 13 May 2022 14:24:35 +0800 Subject: [PATCH 14/20] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B2=B9=E7=AB=99?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF=E8=AF=A6=E6=83=85=E5=BC=B9?= =?UTF-8?q?=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-dispose.component.html | 16 +++-- .../audit/audit-ing/audit-ing.component.html | 6 +- .../audit/audit-ing/audit-ing.component.ts | 36 +++++++--- .../gas-base-info.component.html | 70 +++++++++++++++++++ .../gas-base-info.component.scss | 15 ++++ .../gas-base-info/gas-base-info.component.ts | 36 ++++++++++ src/app/pages/pages.module.ts | 5 +- 7 files changed, 161 insertions(+), 23 deletions(-) create mode 100644 src/app/pages/audit/gas-base-info/gas-base-info.component.html create mode 100644 src/app/pages/audit/gas-base-info/gas-base-info.component.scss create mode 100644 src/app/pages/audit/gas-base-info/gas-base-info.component.ts 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 index 4913a74..efc3ab4 100644 --- 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 @@ -7,13 +7,13 @@
    -

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

    -
    -

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

    -
    -
    +

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

    +
    +
    +

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

    +

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

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

    @@ -25,15 +25,17 @@

    是否年检:   

    +

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

    +

    有效期类型:   不适用

    -

    证件图片:    +

    证件图片:    -

    +

    审批意见:

    diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.html b/src/app/pages/audit/audit-ing/audit-ing.component.html index bb34896..3b34ef6 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.html +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -27,9 +27,9 @@ 更新类证照 档案类证照 -
    - - + + + - + - + @@ -102,16 +103,21 @@ + - - - - - - + + + + + diff --git a/src/app/pages/audit/audit-record/audit-record.component.ts b/src/app/pages/audit/audit-record/audit-record.component.ts index bc1dd22..3627804 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.ts +++ b/src/app/pages/audit/audit-record/audit-record.component.ts @@ -5,6 +5,11 @@ import { NzModalService } from 'ng-zorro-antd/modal'; import { Observable, fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; import { TreeService } from 'src/app/service/tree.service'; +import { DetailsFileCategoryComponent } from '../../license/file-category/details-file-category/details-file-category.component'; +import { DetailsUpdateCategoryComponent } from '../../license/update-category/details-update-category/details-update-category.component'; +import { AuditDetailsInformTimeComponent } from '../audit-inform-time/audit-details-inform-time/audit-details-inform-time.component'; +import { GasBaseInfoComponent } from '../gas-base-info/gas-base-info.component'; + @Component({ selector: 'app-audit-record', templateUrl: './audit-record.component.html', @@ -14,7 +19,7 @@ export class AuditRecordComponent implements OnInit { validateForm!: FormGroup; constructor(private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private toTree: TreeService, private http: HttpClient, private fb: FormBuilder) { } - list = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] + list = [] tableScrollHeight startdate @@ -41,7 +46,6 @@ export class AuditRecordComponent implements OnInit { let lastD = lw.getDate(); this.startdate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期 - this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' // 页面监听 fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { @@ -49,38 +53,34 @@ export class AuditRecordComponent implements OnInit { }); this.getTypeList() - await this.getAllOrganization() this.getRecordList() } - SkipCount + submitForm(): void { - for (const i in this.validateForm.controls) { - this.validateForm.controls[i].markAsDirty(); - this.validateForm.controls[i].updateValueAndValidity(); + if (this.validateForm.value.datePicker[0].toLocaleDateString) { + this.validateForm.value.datePicker[0] = this.validateForm.value.datePicker[0].toLocaleDateString() + } + if (this.validateForm.value.datePicker[1].toLocaleDateString) { + this.validateForm.value.datePicker[1] = this.validateForm.value.datePicker[1].toLocaleDateString() } this.list = [] this.SkipCount = '0' - // this.getRecordList() + this.getRecordList() } resetForm(e: MouseEvent): void { e.preventDefault(); this.validateForm.reset(); - for (const key in this.validateForm.controls) { - this.validateForm.controls[key].markAsPristine(); - this.validateForm.controls[key].updateValueAndValidity(); - } this.validateForm.patchValue({ organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, datePicker: [this.startdate, this.enddate], }); this.list = [] this.SkipCount = '0' - // this.getViolateRecgordList() + this.getRecordList() } - //获取所有组织机构 nodes: any = [] async getAllOrganization() { @@ -101,7 +101,6 @@ export class AuditRecordComponent implements OnInit { element.title = element.displayName }); this.nodes = [...this.toTree.toTree(data.result.items)] - console.log('组织机构列表', this.nodes) this.validateForm.patchValue({ organization: JSON.parse(sessionStorage.getItem('userdata')).organization.id, datePicker: [this.startdate, this.enddate], @@ -148,48 +147,103 @@ export class AuditRecordComponent implements OnInit { }); this.typeLoading = false this.typeList = arr - // console.log('证照类型', arr) }).catch((error) => { - console.log('证照类型', error) + }) } - //历史记录列表 totalCount//列表总数 tableSpin = false + SkipCount: string = '0' + MaxResultCount: string = '100' getRecordList() { - console.log('获得历史记录列表') + this.tableSpin = true let params = { - // Level: this.validateForm.value.level, - // ViolationIds: ViolationIds, - // ViolateArea: this.validateForm.value.site, - // OrganizationUnitId: this.validateForm.value.organization, - // IsContainsChildren: 'true', - // IsHandled: disposalState, - // ViolateTime: this.validateForm.value.datePicker ? [moment(this.validateForm.value.datePicker[0]).format('yyyy-MM-DD'), moment(this.validateForm.value.datePicker[1]).format('yyyy-MM-DD')] : null, - // SkipCount: this.SkipCount, - // MaxResultCount: this.MaxResultCount, - // Positive: this.validateForm.value.misinformation + IsContainsChildren: 'true', + OrganizationUnitId: this.validateForm.value.organization, + AuditTitle: this.validateForm.value.type, + AuditType: this.validateForm.value.info, + StartTime: this.validateForm.value.datePicker[0], + EndTime: this.validateForm.value.datePicker[1], + AuditStatuses: this.validateForm.value.state, + AuditLevel: this.validateForm.value.level, + Sorting: null, + SkipCount: this.SkipCount, + MaxResultCount: this.MaxResultCount, } - // this.tableSpin = true - // this.http.get('/api/services/app/ViolateRecord/GetAll', { - // params: params - // }).subscribe((data: any) => { - // this.list = this.list.concat(data.result.items); - // this.list = [...this.list] - // this.totalCount = data.result.totalCount - // console.log('违规记录列表', data) - // this.tableSpin = false - // }) + this.http.get('/api/services/app/ContentAuditLog/GetHistory', {params}).subscribe((data: any) => { + this.list = this.list.concat(data.result.items); + this.list = [...this.list] + this.totalCount = data.result.totalCount + this.tableSpin = false + console.log('审核历史纪录', this.list) + }) + } + + details(item) { + let component + if (item.auditType == 0) { + component = GasBaseInfoComponent + } else if (item.auditType == 1) { + component = AuditDetailsInformTimeComponent + } else if (item.auditType == 2) { + component = DetailsUpdateCategoryComponent + } else if (item.auditType) { + component = DetailsFileCategoryComponent + } + this.getData(item).then(res=>{ + item.getData = res + const modal = this.modal.create({ + nzContent: component, + nzViewContainerRef: this.viewContainerRef, + nzWidth: item.auditType == 0? 700 : 450, + nzBodyStyle: { + 'border': '1px solid #91CCFF', + 'border-radius': '0px', + 'padding': '7px', + 'box-shadow': '0 0 8px 0 #fff', + 'background-image': 'linear-gradient(#003665, #000f25)' + }, + nzStyle: { + 'top': '50px', + }, + nzComponentParams: { + data: item.getData + }, + nzFooter: null, + nzClosable: false, + }); + }) } + //获取证照类data + getData(item) { + let url + if (item.auditType == 0) { //油站基本信息 + return new Promise((resolve, reject)=>{ + let organization = { organizationId: item.organizationId } + resolve(organization) + }) + } else if (item.auditType == 1) { + url = '/api/services/app/OrganizationValidityLicenseRule/Get' + } else if (item.auditType == 2) { + url = '/api/services/app/StationValidityLicense/Get' + } else if (item.auditType) { + url = '/api/services/app/StationFileLicense/Get' + } + return new Promise((resolve, reject)=>{ + let params = { id: item.itemId } + this.http.get(url,{params}).subscribe((data: any)=>{ + resolve(data.result) + }) + }) + } ngAfterViewInit(): void { fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件 if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) { if (this.totalCount > this.list.length) { - console.log('需要加载数据了', event) this.SkipCount = String(Number(this.SkipCount) + 50) this.getRecordList() } 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 index 27b9f18..462e684 100644 --- 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 @@ -89,12 +89,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.html b/src/app/pages/license/file-category/details-file-category/details-file-category.component.html index da5183d..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 @@ -29,12 +29,7 @@ {{item.creationTime | date:"yyyy/MM/dd"}} - - 审核中 - 审核通过 - 审核驳回 - 已撤销审核 - 审核完成 + {{item.auditStatus | auditStatus}} 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 d5aa61f..5ad7f2b 100644 --- a/src/app/pages/license/file-category/file-category.component.html +++ b/src/app/pages/license/file-category/file-category.component.html @@ -29,18 +29,13 @@ 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 64cad8a..415c4e9 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 @@ -39,12 +39,7 @@ {{item.creationTime | date:"yyyy/MM/dd"}} - - 审核中 - 审核通过 - 审核驳回 - 已撤销审核 - 审核完成 + {{item.auditStatus | auditStatus}} 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 5a29bec..bf1421f 100644 --- a/src/app/pages/license/update-category/update-category.component.html +++ b/src/app/pages/license/update-category/update-category.component.html @@ -36,12 +36,7 @@ From 0942eeac4e0d412c2306e7f99e93ade494be7433 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Sat, 14 May 2022 11:08:15 +0800 Subject: [PATCH 18/20] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E8=AF=81=E4=BB=B6=E4=B8=A4=E4=B8=AA=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-details-inform-time.component.html | 2 +- .../audit-inform-time.component.html | 2 +- .../file-category/file-category.component.ts | 12 ++- .../histories/histories.component.html | 29 +++-- .../license/histories/histories.component.ts | 101 +++++++++++++++++- .../license/inform/inform.component.html | 33 +++--- .../pages/license/inform/inform.component.ts | 79 +++++++++++++- .../details-update-category.component.html | 4 +- .../edit-update-category.component.html | 2 +- .../update-category.component.html | 32 ++++-- .../update-category.component.ts | 2 + src/app/pages/pages.module.ts | 4 +- src/app/pipes/type.pipe.ts | 27 +++++ .../add-update-of-license.component.html | 6 ++ .../add-update-of-license.component.ts | 3 +- .../edit-update-of-license.component.html | 6 ++ .../edit-update-of-license.component.ts | 3 +- .../update-of-license.component.html | 5 +- .../update-of-license.component.ts | 6 +- src/theme.less | 11 ++ 20 files changed, 311 insertions(+), 58 deletions(-) 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 index a63e40e..0ed286b 100644 --- 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 @@ -23,7 +23,7 @@

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

    -

    驳回说明:

    +

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

    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 index cd3a5a5..aadc2ca 100644 --- 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 @@ -29,7 +29,7 @@ - + @@ -20,17 +20,26 @@ - - - - - - - + + + + + + + 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 @@ - - - - - - - + + + + + + + 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/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 64cad8a..51399ec 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 @@ -17,8 +17,8 @@

    有效期类型:   {{data.validityDays || 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 2d3f7ad..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 @@ -31,7 +31,7 @@

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

    办理类型

    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 5a29bec..aecc0c2 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,18 +22,29 @@ - + + - - + 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 b6472cc..e4f824f 100644 --- a/src/app/pages/license/update-category/update-category.component.ts +++ b/src/app/pages/license/update-category/update-category.component.ts @@ -32,9 +32,11 @@ export class UpdateCategoryComponent 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/StationValidityLicense/GetCurStationLicense`,{params}).subscribe((info: any)=>{ + this.tableSpin = false this.list = info.result console.log(info.result) }) diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 2c806d3..86730fd 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -81,13 +81,13 @@ import { AuditInformTimeComponent } from './audit/audit-inform-time/audit-inform 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 } from '../pipes/type.pipe'; +import { auditStatusPipe, handleState, licenseViolationType, notificationContent } from '../pipes/type.pipe'; import { GasBaseInfoComponent } from './audit/gas-base-info/gas-base-info.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, OilStationListComponent, UpdateLicenseListComponent, FileLicenseListComponent, AuditNavComponent, AuditIngComponent, AuditRecordComponent, AuditInformTimeComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent,auditStatusPipe, GasBaseInfoComponent], + 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], imports: [ diff --git a/src/app/pipes/type.pipe.ts b/src/app/pipes/type.pipe.ts index b5342d7..40610c1 100644 --- a/src/app/pipes/type.pipe.ts +++ b/src/app/pipes/type.pipe.ts @@ -6,4 +6,31 @@ export class auditStatusPipe implements PipeTransform { 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/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 @@ + + + + + + + + + + + + + + + + + + + + \ 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..3667e5c --- /dev/null +++ b/src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.ts @@ -0,0 +1,63 @@ +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 params = { + id: this.dataCopy.licenseTypeId, + date: moment(this.validateForm.value.time).format('YYYY-MM-MM')//开业时间格式化 + } + this.http.put('/api/services/app/OrganizationValidityLicenseRule/UpdateYearlyCheckDate', null, { params: params }).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-ing/audit-ing.component.html b/src/app/pages/audit/audit-ing/audit-ing.component.html index 6f32b7c..558691e 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.html +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -5,7 +5,7 @@ @@ -19,7 +19,7 @@ @@ -103,7 +103,7 @@
    -
    - -
    加油站名称 +
    序号 + {{item.name}} 区域所属公司联系人联系电话油站等级经营品类油机数量车道数量油罐容积操作
    -
    - -
    - {{item.stationName}} -
    {{item.locationName}}{{item.companyName}}{{item.leaderName}}{{item.leaderContact}}{{item.stationLevel}}{{item.sellVariety}}{{item.gasStationCount}}{{item.laneCount}} - {{item.tankVolume}} - {{item.tankVolume ? 'm³' : null}} - - 查看 + {{key + 1}} + + + + {{i.value.endDate | date:"yyyy-MM-dd"}} + + + + {{i.value}} + + + + + / + +
    审批信息 加油站名称区域区域 省公司 提交时间 审批状态
    - 审批类型 + {{item.auditTitle || ''}} + + 油站信息 + 更新类证照提醒时间 + 更新类证照 + 档案类证照 + {{item.gasStation.stationName}}{{item.gasStation.locationName}}{{item.gasStation.companyName}}{{item.committedTime | date:"yyyy/MM/dd"}} + + 审核中 + 审核通过 + 审核驳回 + 未提交审核 + 审核完成 审批信息加油站名称区域省公司提交时间审批状态 处置 - 详情 + 详情
    - + 不适用 - 不适用 + 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..0374804 100644 --- a/src/app/pages/license/file-category/file-category.component.ts +++ b/src/app/pages/license/file-category/file-category.component.ts @@ -122,6 +122,9 @@ export class FileCategoryComponent implements OnInit { //提交审核 submitReview(item){ + if (!item.id) { + return + } let params = { id: item.id } this.http.post('/api/services/app/StationFileLicense/Commit', {},{params}).subscribe(data => { this.message.create('success', '提交审核成功!'); 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 f79a73b..3baf703 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 @@ -13,7 +13,7 @@

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

    -

    办理类型:   {{data.handleType || ''}}

    +

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

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

    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 f908388..f3c57f2 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 @@ -5,6 +5,7 @@ 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', @@ -23,7 +24,7 @@ export class DetailsUpdateCategoryComponent implements OnInit { auditList: any[] = []; //获取审核记录 getAuditLogging() { - if (this.data.auditLogId == 0) { + if (!this.data.auditLogId) { return } let params = { id: this.data.auditLogId } @@ -48,6 +49,23 @@ export class DetailsUpdateCategoryComponent implements OnInit { this.modal.destroy({ data: 'this the result data' }); } + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let name + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? item = element.name : null + }) + }) + name = handleTypeList.join(',') + return name + } + //获取文件格式 getFileType(name: string):string { let suffix 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 1077ce0..2d3f7ad 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 @@ -38,16 +38,8 @@ - - - - - - - - - - + + 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 18c4222..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 @@ -18,11 +18,10 @@ export class EditUpdateCategoryComponent implements OnInit { validateForm!: FormGroup; 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[] = []; //长期 日期 - typeList: string[] = []; //办理类型 select多选 data ngOnInit(): void { this.validateForm = this.fb.group({ @@ -41,10 +40,6 @@ export class EditUpdateCategoryComponent implements OnInit { this.isNoLongTermTime.push(new Date(this.data2.validityStartTime)) this.isNoLongTermTime.push(new Date(this.data2.validityEndTime)) } - // 办理类型 - if (this.data2.handleType) { - this.typeList = (this.data2.handleType).split('/') - } console.log(this.data2) } @@ -197,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 618cab2..5a29bec 100644 --- a/src/app/pages/license/update-category/update-category.component.html +++ b/src/app/pages/license/update-category/update-category.component.html @@ -32,7 +32,7 @@
    {{item.validityDays || 0}}天{{item.handleType}}{{getHandleTypes(item.handleTypes)}} {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 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 1380759..8942581 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'; @@ -40,6 +40,23 @@ export class UpdateCategoryComponent implements OnInit { }) } + //获取办理类型 + getHandleTypes(handleTypes: any[]):string { + if (!handleTypes || !handleTypes.length) { + return + } + let name + let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); + let list: handleTypeList[] = new handleType().list; + handleTypeList.forEach(item=>{ + list.find(element=>{ + item == element.value? item = element.name : null + }) + }) + name = handleTypeList.join(',') + return name + } + //获取文件格式 getFileType(name: string):string { let suffix @@ -121,10 +138,6 @@ export class UpdateCategoryComponent implements OnInit { body.validityStartTime = instance.isNoLongTermTime[0] || new Date() body.validityEndTime = instance.isNoLongTermTime[1] || new Date() } - // 办理类型 - if (instance.typeList.length) { - body.handleType = instance.typeList.join("/") - } this.http.post('/api/services/app/StationValidityLicense/Create', body).subscribe(data => { resolve(data); this.getStationList(); @@ -169,6 +182,9 @@ export class UpdateCategoryComponent implements OnInit { //提交审核 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', '提交审核成功!'); From 52eb5a58c2b2ca526fd38a241809a112c00a3328 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 12 May 2022 15:58:03 +0800 Subject: [PATCH 10/20] =?UTF-8?q?=E4=BF=AE=E6=AD=A3bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit/audit-ing/audit-dispose/audit-dispose.component.html | 2 +- .../details-update-category.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 index cdff8ed..4913a74 100644 --- 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 @@ -18,7 +18,7 @@

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

    -

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

    +

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

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

    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 3baf703..64cad8a 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 @@ -13,7 +13,7 @@

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

    -

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

    +

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

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

    From 86ac26c8052625e497fb149b3a5f4d2a788a67eb Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 12 May 2022 16:15:39 +0800 Subject: [PATCH 11/20] =?UTF-8?q?=E5=B0=81=E8=A3=85=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E5=8A=9E=E7=90=86=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-ing/audit-dispose/audit-dispose.component.ts | 7 +++---- .../details-update-category.component.ts | 7 +++---- .../license/update-category/update-category.component.ts | 7 +++---- 3 files changed, 9 insertions(+), 12 deletions(-) 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 index b5ba90e..e09e7cd 100644 --- 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 @@ -39,16 +39,15 @@ export class AuditDisposeComponent implements OnInit { if (!handleTypes || !handleTypes.length) { return } - let name + 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? item = element.name : null + item == element.value? names.push(element.name) : null }) }) - name = handleTypeList.join(',') - return name + return names.join(',') } //获取文件格式 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 f3c57f2..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 @@ -54,16 +54,15 @@ export class DetailsUpdateCategoryComponent implements OnInit { if (!handleTypes || !handleTypes.length) { return } - let name + 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? item = element.name : null + item == element.value? names.push(element.name) : null }) }) - name = handleTypeList.join(',') - return name + return names.join(',') } //获取文件格式 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 8942581..b6472cc 100644 --- a/src/app/pages/license/update-category/update-category.component.ts +++ b/src/app/pages/license/update-category/update-category.component.ts @@ -45,16 +45,15 @@ export class UpdateCategoryComponent implements OnInit { if (!handleTypes || !handleTypes.length) { return } - let name + 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? item = element.name : null + item == element.value? names.push(element.name) : null }) }) - name = handleTypeList.join(',') - return name + return names.join(',') } //获取文件格式 From 9af2b864809a010716f1acc6525c83907ba4bedd Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Thu, 12 May 2022 16:26:48 +0800 Subject: [PATCH 12/20] =?UTF-8?q?[=E5=AE=8C=E6=88=90]=E6=95=B0=E5=AD=97?= =?UTF-8?q?=E6=B2=B9=E7=AB=99=E6=A1=A3=E6=A1=88=E7=B1=BB=E8=AF=81=E7=85=A7?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=9B=E5=AE=A1=E6=89=B9=E4=B9=8B=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E6=97=B6=E9=97=B4=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-inform-time.component.html | 14 +- .../audit-inform-time.component.ts | 41 ++++- .../audit/audit-nav/audit-nav.component.html | 4 +- .../audit/audit-nav/audit-nav.component.ts | 6 +- .../file-license-list.component.html | 64 ++++++- .../file-license-list.component.scss | 79 ++++++++ .../file-license-list.component.ts | 173 +++++++++++++++++- .../oil-station-list.component.html | 1 + .../oil-station-list.component.scss | 35 +++- .../pages/plan-admin/plan-admin.component.ts | 18 +- .../update-license-list.component.ts | 35 ++-- src/theme.less | 1 + 12 files changed, 433 insertions(+), 38 deletions(-) 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 index 4650790..b36aa5e 100644 --- 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 @@ -23,14 +23,14 @@
    - 营业执照 + {{item.licenseName}} 90天90天90天90天时间审批状态{{item.handleRemindDaysDefault}}天{{item.handleRemindDays}}天{{item.closingRemindDaysDefault}}天{{item.closingRemindDays}}天{{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}{{item.auditStatus | auditStatus}} 编辑 审核详情 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 index 310cda6..15b00ca 100644 --- 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 @@ -1,4 +1,5 @@ -import { Component, OnInit, ViewContainerRef } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { Component, ElementRef, OnInit, ViewContainerRef } from '@angular/core'; import { NzModalService } from 'ng-zorro-antd/modal'; import { Observable, fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; @@ -13,19 +14,49 @@ import { EditInformTimeComponent } from './edit-inform-time/edit-inform-time.com }) export class AuditInformTimeComponent implements OnInit { - constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } + constructor(private http: HttpClient, private element: ElementRef, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } 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 { - this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 85) + 'px' // 页面监听 + this.tableScrollHeight = '0px' fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { - this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 85) + 'px' + 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 = this.list.concat(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) { diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.html b/src/app/pages/audit/audit-nav/audit-nav.component.html index 509ec51..e9c2dbc 100644 --- a/src/app/pages/audit/audit-nav/audit-nav.component.html +++ b/src/app/pages/audit/audit-nav/audit-nav.component.html @@ -6,6 +6,8 @@ @@ -13,6 +15,6 @@
    - +
    \ No newline at end of file diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.ts b/src/app/pages/audit/audit-nav/audit-nav.component.ts index e787789..08f23b6 100644 --- a/src/app/pages/audit/audit-nav/audit-nav.component.ts +++ b/src/app/pages/audit/audit-nav/audit-nav.component.ts @@ -10,12 +10,16 @@ export class AuditNavComponent implements OnInit { constructor() { } - navList = ['审批', '历史纪录', '通知时间'] + 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/plan-admin/file-license-list/file-license-list.component.html b/src/app/pages/plan-admin/file-license-list/file-license-list.component.html index 7f0f14f..03619c9 100644 --- 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 @@ -1 +1,63 @@ -

    file-license-list works!

    +
    + +
    + +
    序号 + {{item.name}} +
    {{key + 1}} + + + + {{i.value.validityType}} + + + + {{i.value}} + + + + / + + +
    {{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}} {{item.auditStatus | auditStatus}} - 编辑 + 编辑 + 撤销审核 审核详情
    {{item.gasStation.stationName}}{{item.gasStation.locationName}}{{item.gasStation.companyName}} {{item.committedTime | date:"yyyy/MM/dd"}} diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts index 2d7e9e8..ebb259c 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.ts +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -6,6 +6,7 @@ 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 { GasBaseInfoComponent } from '../gas-base-info/gas-base-info.component'; import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; @Component({ @@ -17,7 +18,6 @@ export class AuditIngComponent implements OnInit { constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService) { } tableSpin = false - list = [] tableScrollHeight ngOnInit(): void { @@ -29,13 +29,18 @@ export class AuditIngComponent implements OnInit { this.getStationList() } - //获取当前油站档案类证照 - getStationList() { + list = [] + SkipCount: string = '0' + MaxResultCount: string = '100' + //获取当前油站档案类证照 + getStationList() { 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 => { @@ -57,7 +62,7 @@ export class AuditIngComponent implements OnInit { const modal = this.modal.create({ nzContent: AuditDisposeComponent, nzViewContainerRef: this.viewContainerRef, - nzWidth: 600, + nzWidth: item.auditType == 0? 700 : 600, nzBodyStyle: { 'border': '1px solid #91CCFF', 'border-radius': '0px', @@ -65,6 +70,9 @@ export class AuditIngComponent implements OnInit { 'box-shadow': '0 0 8px 0 #fff', 'background-image': 'linear-gradient(#003665, #000f25)' }, + nzStyle: { + 'top': '50px', + }, nzComponentParams: { data: item }, @@ -74,9 +82,9 @@ export class AuditIngComponent implements OnInit { 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) { @@ -104,7 +112,7 @@ export class AuditIngComponent implements OnInit { details(item) { let component if (item.auditType == 0) { - + component = GasBaseInfoComponent } else if (item.auditType == 1) { } else if (item.auditType == 2) { @@ -116,7 +124,7 @@ export class AuditIngComponent implements OnInit { const modal = this.modal.create({ nzContent: component, nzViewContainerRef: this.viewContainerRef, - nzWidth: 450, + nzWidth: item.auditType == 0? 700 : 450, nzBodyStyle: { 'border': '1px solid #91CCFF', 'border-radius': '0px', @@ -124,6 +132,9 @@ export class AuditIngComponent implements OnInit { 'box-shadow': '0 0 8px 0 #fff', 'background-image': 'linear-gradient(#003665, #000f25)' }, + nzStyle: { + 'top': '50px', + }, nzComponentParams: { data: item.getData }, @@ -157,10 +168,13 @@ export class AuditIngComponent implements OnInit { //获取证照类data getData(item) { let url - if (item.auditType == 0) { - + 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) { 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..ead2175 --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.html @@ -0,0 +1,70 @@ +
    +

    + + +

    +
    +

    + + +

    +
    +

    地址:   {{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..e82af1e --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.scss @@ -0,0 +1,15 @@ +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; +} \ 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..7422df2 --- /dev/null +++ b/src/app/pages/audit/gas-base-info/gas-base-info.component.ts @@ -0,0 +1,36 @@ +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) { //详情 + console.log(this.data,'gasInfo') + this.isDetails = true + } + 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 + }) + } + +} diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index adbab1d..2c806d3 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -82,11 +82,12 @@ import { AuditDisposeComponent } from './audit/audit-ing/audit-dispose/audit-dis 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 } from '../pipes/type.pipe'; +import { GasBaseInfoComponent } from './audit/gas-base-info/gas-base-info.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, OilStationListComponent, UpdateLicenseListComponent, FileLicenseListComponent, AuditNavComponent, AuditIngComponent, AuditRecordComponent, AuditInformTimeComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent,auditStatusPipe], + 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], imports: [ @@ -130,7 +131,7 @@ import { auditStatusPipe } from '../pipes/type.pipe'; NzToolTipModule, NzTimelineModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent], + entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent, GasBaseInfoComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) From 80cf8c952fca6c4fe01715765361624871030208 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Fri, 13 May 2022 15:29:33 +0800 Subject: [PATCH 15/20] =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit-dispose.component.html | 19 +++++++--- .../audit/audit-ing/audit-ing.component.html | 9 +---- .../audit/audit-ing/audit-ing.component.ts | 7 ++-- .../gas-base-info.component.html | 32 ++++++++++++++++- .../gas-base-info.component.scss | 32 +++++++++++++++++ .../gas-base-info/gas-base-info.component.ts | 36 ++++++++++++++++--- .../file-category/file-category.component.ts | 2 ++ .../update-category.component.ts | 2 ++ 8 files changed, 120 insertions(+), 19 deletions(-) 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 index efc3ab4..82c9c24 100644 --- 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 @@ -7,10 +7,22 @@
    -

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

    -
    +

    {{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}}

    @@ -28,7 +40,6 @@

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

    有效期类型:   不适用

    -

    证件图片:    diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.html b/src/app/pages/audit/audit-ing/audit-ing.component.html index 3b34ef6..6f32b7c 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.html +++ b/src/app/pages/audit/audit-ing/audit-ing.component.html @@ -31,14 +31,7 @@

    {{item.committedTime | date:"yyyy/MM/dd"}} - - 审核中 - 审核通过 - 审核驳回 - 未提交审核 - 审核完成 - {{item.auditStatusDesc}} 处置 详情 diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts index ebb259c..5c5d219 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.ts +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -6,6 +6,7 @@ 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'; @@ -34,6 +35,7 @@ export class AuditIngComponent implements OnInit { MaxResultCount: string = '100' //获取当前油站档案类证照 getStationList() { + this.tableSpin = true let data = JSON.parse(sessionStorage.getItem('userdata')); let params = { OrganizationUnitId: data.organization.id || "" , @@ -47,6 +49,7 @@ export class AuditIngComponent implements OnInit { element.itemData = JSON.parse(element.itemData) }); this.list = info.result.items || [] + this.tableSpin = false console.log(this.list) }) } @@ -91,7 +94,7 @@ export class AuditIngComponent implements OnInit { url = '/api/services/app/StationFileLicense/Audit' } let params = { - id: item.getData.id, + id: item.auditType == 0? item.gasStation.id : item.getData.id, remark: instance.textarea } let body = instance.isPass? 2 : 3; @@ -114,7 +117,7 @@ export class AuditIngComponent implements OnInit { if (item.auditType == 0) { component = GasBaseInfoComponent } else if (item.auditType == 1) { - + component = AuditDetailsInformTimeComponent } else if (item.auditType == 2) { component = DetailsUpdateCategoryComponent } else if (item.auditType) { 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 index ead2175..c9f123e 100644 --- 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 @@ -1,4 +1,11 @@ -
    +
    +
    +
    + 详情 +
    + +
    +

    @@ -67,4 +74,27 @@

    + +

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

    + + + {{item.creationTime | date:"yyyy/MM/dd"}} + + 审核中 + 审核通过 + 审核驳回 + 已撤销审核 + 审核完成 + +
    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 index e82af1e..8604584 100644 --- 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 @@ -12,4 +12,36 @@ label{ display: inline-block; vertical-align: middle; } .marginLeft { width: 55%; overflow: hidden; +} +.title { + font-family: sybold; + width: 100%; + height: 48px; + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); + display: flex; + align-items: center; + position: relative; + + .titlecontent { + width: 100%; + height: 32px; + line-height: 32px; + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); + text-align: center; + color: #91CCFF; + font-size: 16px; + } + + i { + position: absolute; + right: 12px; + color: #fff; + font-size: 18px; + cursor: pointer; + } +} +.recordP{ + display: flex; + justify-content: space-between; + align-items: center; } \ 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 index 7422df2..2257ac1 100644 --- 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 @@ -15,10 +15,10 @@ export class GasBaseInfoComponent implements OnInit { isDetails: boolean = false; //是否是详情 ngOnInit(): void { - if (this.data.id === undefined) { //详情 - console.log(this.data,'gasInfo') - this.isDetails = true - } + // if (this.data.id === undefined) { //详情 + // this.isDetails = true + // this.getAuditLogging() + // } this.getBaseInfo() } @@ -33,4 +33,32 @@ export class GasBaseInfoComponent implements OnInit { }) } + destroyModal() { + this.modal.destroy({ data: 'this the result data' }); + } + + auditList: any[] = []; + //获取审核记录 + getAuditLogging() { + if (!this.data.organizationId) { + return + } + let params = { orgId: this.data.organizationId } + this.http.get(`/api/services/app/GasStation/GetAuditted`,{params}).subscribe((data: any)=>{ + //this.auditList = data.result.actionList || [] + console.log(data) + }) + } + + //获取驳回次数 + getRejectNum(): number { + let num = 0 + this.auditList.forEach(item=>{ + if (item.auditStatus == 3) { + num = num + 1 + } + }) + return num + } + } 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 0374804..fb2300c 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.list = info.result + this.tableSpin = false console.log(info.result) }) } 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 b6472cc..4e36b4f 100644 --- a/src/app/pages/license/update-category/update-category.component.ts +++ b/src/app/pages/license/update-category/update-category.component.ts @@ -32,10 +32,12 @@ export class UpdateCategoryComponent 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/StationValidityLicense/GetCurStationLicense`,{params}).subscribe((info: any)=>{ this.list = info.result + this.tableSpin = false console.log(info.result) }) } From 687f5231d0d332cb1198ffea9e66b57fb560c815 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Fri, 13 May 2022 15:46:57 +0800 Subject: [PATCH 16/20] =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit/audit-ing/audit-ing.component.ts | 26 +++---------------- .../gas-base-info.component.html | 4 +-- .../gas-base-info/gas-base-info.component.ts | 8 +++--- 3 files changed, 9 insertions(+), 29 deletions(-) diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts index 5c5d219..aeb9def 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.ts +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -123,7 +123,8 @@ export class AuditIngComponent implements OnInit { } else if (item.auditType) { component = DetailsFileCategoryComponent } - if (item.getData) { + this.getData(item).then(res=>{ + item.getData = res const modal = this.modal.create({ nzContent: component, nzViewContainerRef: this.viewContainerRef, @@ -144,28 +145,7 @@ export class AuditIngComponent implements OnInit { nzFooter: null, nzClosable: false, }); - } else { - this.getData(item).then(res=>{ - item.getData = res - const modal = this.modal.create({ - nzContent: component, - nzViewContainerRef: this.viewContainerRef, - nzWidth: 450, - nzBodyStyle: { - 'border': '1px solid #91CCFF', - 'border-radius': '0px', - 'padding': '7px', - 'box-shadow': '0 0 8px 0 #fff', - 'background-image': 'linear-gradient(#003665, #000f25)' - }, - nzComponentParams: { - data: item.getData - }, - nzFooter: null, - nzClosable: false, - }); - }) - } + }) } //获取证照类data 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 index c9f123e..27b9f18 100644 --- 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 @@ -75,7 +75,7 @@
    -

    + 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 index 2257ac1..187e5e6 100644 --- 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 @@ -15,10 +15,10 @@ export class GasBaseInfoComponent implements OnInit { isDetails: boolean = false; //是否是详情 ngOnInit(): void { - // if (this.data.id === undefined) { //详情 - // this.isDetails = true - // this.getAuditLogging() - // } + if (this.data.id === undefined) { //详情 + this.isDetails = true + //this.getAuditLogging() + } this.getBaseInfo() } From dd51d502ccc2eca56e12dbb60ce6e5932f646ee2 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Sat, 14 May 2022 10:42:40 +0800 Subject: [PATCH 17/20] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E7=BA=AA=E5=BD=95=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../audit/audit-ing/audit-ing.component.ts | 24 +++- .../audit-record/audit-record.component.html | 24 ++-- .../audit-record/audit-record.component.ts | 134 ++++++++++++------ .../gas-base-info.component.html | 7 +- .../details-file-category.component.html | 7 +- .../file-category.component.html | 9 +- .../details-update-category.component.html | 7 +- .../update-category.component.html | 9 +- 8 files changed, 135 insertions(+), 86 deletions(-) diff --git a/src/app/pages/audit/audit-ing/audit-ing.component.ts b/src/app/pages/audit/audit-ing/audit-ing.component.ts index aeb9def..03f20df 100644 --- a/src/app/pages/audit/audit-ing/audit-ing.component.ts +++ b/src/app/pages/audit/audit-ing/audit-ing.component.ts @@ -1,5 +1,5 @@ import { HttpClient } from '@angular/common/http'; -import { Component, OnInit, ViewContainerRef } from '@angular/core'; +import { Component, ElementRef, OnInit, ViewContainerRef } from '@angular/core'; import { NzMessageService } from 'ng-zorro-antd/message'; import { NzModalService } from 'ng-zorro-antd/modal'; import { Observable, fromEvent } from 'rxjs'; @@ -17,7 +17,7 @@ import { AuditDisposeComponent } from './audit-dispose/audit-dispose.component'; }) export class AuditIngComponent implements OnInit { - constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService) { } + constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef,private http: HttpClient,private message: NzMessageService,private element: ElementRef) { } tableSpin = false tableScrollHeight @@ -30,9 +30,21 @@ export class AuditIngComponent implements OnInit { this.getStationList() } + ngAfterViewInit(): void { + fromEvent(this.element.nativeElement.querySelector(`.ant-table-body`) as HTMLCanvasElement, 'scroll').pipe(debounceTime(100)).subscribe((event: any) => { //监听 DOM 滚动事件 + if (event.target.scrollHeight - (event.target.scrollTop + event.target.clientHeight) <= 10) { + if (this.totalCount > this.list.length) { + this.SkipCount = String(Number(this.SkipCount) + 50) + this.getStationList() + } + } + }); + } + list = [] - SkipCount: string = '0' - MaxResultCount: string = '100' + totalCount;//列表总数 + SkipCount: string = '0'; + MaxResultCount: string = '100'; //获取当前油站档案类证照 getStationList() { this.tableSpin = true @@ -48,7 +60,9 @@ export class AuditIngComponent implements OnInit { info.result.items.forEach(element => { element.itemData = JSON.parse(element.itemData) }); - this.list = info.result.items || [] + this.list = this.list.concat(info.result.items); + this.list = [...this.list] + this.totalCount = info.result.totalCount this.tableSpin = false console.log(this.list) }) diff --git a/src/app/pages/audit/audit-record/audit-record.component.html b/src/app/pages/audit/audit-record/audit-record.component.html index fed8094..86d42a5 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.html +++ b/src/app/pages/audit/audit-record/audit-record.component.html @@ -53,6 +53,7 @@ + @@ -92,7 +93,7 @@

    审批信息 加油站名称区域区域 省公司 提交时间 审批状态
    - 审批类型 + {{item.auditTitle || ''}} + + 油站信息 + 更新类证照提醒时间 + 更新类证照 + 档案类证照 审批信息加油站名称区域省公司提交时间审批状态{{item.committedTime | date:"yyyy/MM/dd"}}{{item.auditStatusDesc}} - 详情 + 详情
    {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 - - 审核中 - 审核通过 - 审核驳回 - 未提交审核 - 审核完成 + {{item.auditStatus | auditStatus}} 编辑 详情 撤销审核 - 提交审核 + 提交审核 审核完成
    {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 - - 审核中 - 审核通过 - 审核驳回 - 未提交审核 - 审核完成 + {{item.auditStatus | auditStatus}} @@ -53,7 +48,7 @@ 编辑 详情 撤销审核 - 提交审核 + 提交审核 审核完成
    {{item.handleRemindDays}}天 {{item.closingRemindDaysDefault}}天 {{item.closingRemindDays}}天{{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}{{(item.auditLog && item.auditLog.committedTime) ? (item.auditLog.committedTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}} {{item.auditStatus | auditStatus}} { + this.http.get(`/api/services/app/StationFileLicense/GetStationList`, { params }).subscribe((info: any) => { this.list = info.result + this.tableSpin = false console.log(info.result) }) } @@ -121,21 +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 @@
    - 证件名称 + 证件名称 证件编号 证件有效期
    - 证件名称 + {{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}} - 详情 + 详情
    - 证件名称 + 证件名称 证件编号 证件有效期
    - 证件名称 + {{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}} - 忽略 - 处置 - 申请延期 + 忽略 + 处置 + 申请延期
    - 证件名称 + 证件名称 证件编号 证件有效期 附件 有效期类型 办理类型是否年检 提交时间 审核状态 预警状态
    - {{item.licenseTypeName || ''}} + {{item.licenseTypeName || ''}} {{item.licenseCode || ''}}{{item.validityEndTime | date:"yyyy/MM/dd"}}{{item.isLongTerm ? '长期证照' : (item.validityEndTime | date:"yyyy/MM/dd")}} - - - + + + + + + 长期 + + + {{item.validityDays ? item.validityDays+'天' : '/'}} + + {{item.validityDays || 0}}天 {{getHandleTypes(item.handleTypes)}} {{item.committedTime | date:"yyyy/MM/dd"}}未提交审核 @@ -53,7 +64,8 @@ 编辑 详情 撤销审核 - 提交审核 + 提交审核 审核完成
    更新类证件 办理提醒时间 临期提醒时间是否年检 操作
    {{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 daaa707..3c9c6d8 100644 --- a/src/theme.less +++ b/src/theme.less @@ -187,6 +187,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; + } + } From 64220adfed6b17d5bbaf53bff28c9dbc2b69ab4e Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Sat, 14 May 2022 16:38:14 +0800 Subject: [PATCH 19/20] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=B9=B4=E5=AE=A1=E6=97=B6=E9=97=B4=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../annual-inspection.component.html | 28 +++++ .../annual-inspection.component.scss | 15 +++ .../annual-inspection.component.ts | 84 ++++++++++++++ .../edit-annual-inspection.component.html | 33 ++++++ .../edit-annual-inspection.component.scss | 105 ++++++++++++++++++ .../edit-annual-inspection.component.ts | 63 +++++++++++ .../audit/audit-ing/audit-ing.component.html | 4 +- .../audit/audit-nav/audit-nav.component.html | 3 + .../audit-record/audit-record.component.html | 4 +- .../audit-record/audit-record.component.ts | 2 +- src/app/pages/home/home.component.ts | 5 +- src/app/pages/pages.module.ts | 6 +- src/theme.less | 1 - 13 files changed, 343 insertions(+), 10 deletions(-) create mode 100644 src/app/pages/audit/annual-inspection/annual-inspection.component.html create mode 100644 src/app/pages/audit/annual-inspection/annual-inspection.component.scss create mode 100644 src/app/pages/audit/annual-inspection/annual-inspection.component.ts create mode 100644 src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.html create mode 100644 src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.scss create mode 100644 src/app/pages/audit/annual-inspection/edit-annual-inspection/edit-annual-inspection.component.ts 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"}} + 编辑 +
    - 审批类型 + 审批类型 审批信息 加油站名称
    - {{item.auditTitle || ''}} + {{item.auditTitle || ''}} 油站信息 diff --git a/src/app/pages/audit/audit-nav/audit-nav.component.html b/src/app/pages/audit/audit-nav/audit-nav.component.html index e9c2dbc..49f53ab 100644 --- a/src/app/pages/audit/audit-nav/audit-nav.component.html +++ b/src/app/pages/audit/audit-nav/audit-nav.component.html @@ -8,6 +8,8 @@ (click)="selectNav(item)">{{item}} 通知时间 + 年检设置 @@ -16,5 +18,6 @@ + \ No newline at end of file diff --git a/src/app/pages/audit/audit-record/audit-record.component.html b/src/app/pages/audit/audit-record/audit-record.component.html index 86d42a5..a2c5cad 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.html +++ b/src/app/pages/audit/audit-record/audit-record.component.html @@ -89,7 +89,7 @@
    - 审批类型 + 审批类型 审批信息 加油站名称
    - {{item.auditTitle || ''}} + {{item.auditTitle || ''}} 油站信息 diff --git a/src/app/pages/audit/audit-record/audit-record.component.ts b/src/app/pages/audit/audit-record/audit-record.component.ts index 3627804..584be47 100644 --- a/src/app/pages/audit/audit-record/audit-record.component.ts +++ b/src/app/pages/audit/audit-record/audit-record.component.ts @@ -154,7 +154,7 @@ export class AuditRecordComponent implements OnInit { //历史记录列表 totalCount//列表总数 - tableSpin = false + tableSpin = true SkipCount: string = '0' MaxResultCount: string = '100' getRecordList() { diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts index 432761a..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) @@ -147,6 +147,8 @@ export class HomeComponent implements OnInit { SignalRAspNetCoreHelper.initSignalR(); abp.event.on('abp.notifications.received', this.reloadPage); } + + //右下角消息弹窗 messageId = [] receiptOfNotification(userNotification) { let obj = { @@ -302,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/pages.module.ts b/src/app/pages/pages.module.ts index 86730fd..0a0279e 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -83,11 +83,13 @@ import { EditInformTimeComponent } from './audit/audit-inform-time/edit-inform-t 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, OilStationListComponent, UpdateLicenseListComponent, FileLicenseListComponent, AuditNavComponent, AuditIngComponent, AuditRecordComponent, AuditInformTimeComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent,auditStatusPipe, GasBaseInfoComponent,notificationContent,licenseViolationType,handleState], + 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: [ @@ -131,7 +133,7 @@ import { GasBaseInfoComponent } from './audit/gas-base-info/gas-base-info.compon NzToolTipModule, NzTimelineModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent, GetOutOfLineDetailsComponent, DispositionComponent, OilUnloadingProcessComponent, ChangePasswordComponent, DisposeequipmentComponent, EditUpdateCategoryComponent, DetailsUpdateCategoryComponent, EditFileCategoryComponent, DetailsFileCategoryComponent, PdfWordLookComponent, AuditDisposeComponent, EditInformTimeComponent, AuditDetailsInformTimeComponent, GasBaseInfoComponent], + 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/theme.less b/src/theme.less index 3c9c6d8..286d270 100644 --- a/src/theme.less +++ b/src/theme.less @@ -8,7 +8,6 @@ .greyColor { color: #5D687A; cursor: not-allowed; - // pointer-events: none; } .yellowColor { From 4a39fa41c86bfe0ffd6c5ded0af4cf4f72fea504 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Sat, 14 May 2022 16:51:56 +0800 Subject: [PATCH 20/20] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=AE=8C=E5=96=84?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../edit-annual-inspection.component.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 index 3667e5c..c2b330d 100644 --- 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 @@ -40,11 +40,12 @@ export class EditAnnualInspectionComponent implements OnInit { ok() { if (this.validateForm.valid) { this.isLoading = true - let params = { - id: this.dataCopy.licenseTypeId, - date: moment(this.validateForm.value.time).format('YYYY-MM-MM')//开业时间格式化 + 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', null, { params: params }).subscribe((data) => { + this.http.put('/api/services/app/OrganizationValidityLicenseRule/UpdateYearlyCheckDate', body).subscribe((data) => { this.message.create('success', '修改成功'); this.isLoading = false this.modal.triggerOk()