Browse Source

[新增]新增证件两个页面

dev
邵佳豪 3 years ago
parent
commit
0942eeac4e
  1. 2
      src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html
  2. 2
      src/app/pages/audit/audit-inform-time/audit-inform-time.component.html
  3. 12
      src/app/pages/license/file-category/file-category.component.ts
  4. 29
      src/app/pages/license/histories/histories.component.html
  5. 101
      src/app/pages/license/histories/histories.component.ts
  6. 33
      src/app/pages/license/inform/inform.component.html
  7. 79
      src/app/pages/license/inform/inform.component.ts
  8. 4
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html
  9. 2
      src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html
  10. 32
      src/app/pages/license/update-category/update-category.component.html
  11. 2
      src/app/pages/license/update-category/update-category.component.ts
  12. 4
      src/app/pages/pages.module.ts
  13. 27
      src/app/pipes/type.pipe.ts
  14. 6
      src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html
  15. 3
      src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.ts
  16. 6
      src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html
  17. 3
      src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.ts
  18. 5
      src/app/system-management/update-of-license/update-of-license.component.html
  19. 6
      src/app/system-management/update-of-license/update-of-license.component.ts
  20. 11
      src/theme.less

2
src/app/pages/audit/audit-inform-time/audit-details-inform-time/audit-details-inform-time.component.html

@ -23,7 +23,7 @@
<div class="cutoffrule"></div>
<p>审核状态:{{data.auditStatus | auditStatus}}</p>
<div class="cutoffrule"></div>
<p>驳回说明:</p>
<p>驳回说明:{{data.auditLog.rejectReason}}</p>
</div>

2
src/app/pages/audit/audit-inform-time/audit-inform-time.component.html

@ -29,7 +29,7 @@
<td>{{item.handleRemindDays}}天</td>
<td>{{item.closingRemindDaysDefault}}天</td>
<td>{{item.closingRemindDays}}天</td>
<td>{{item.commitTime ? (item.commitTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}</td>
<td>{{(item.auditLog && item.auditLog.committedTime) ? (item.auditLog.committedTime | date:"yyyy-MM-dd HH:mm:ss") : '/'}}</td>
<td>{{item.auditStatus | auditStatus}}</td>
<td class="operation">
<span class="blueColor" (click)="edit(item)"

12
src/app/pages/license/file-category/file-category.component.ts

@ -31,10 +31,12 @@ export class FileCategoryComponent implements OnInit {
//获取当前油站档案类证照
getStationList() {
this.tableSpin = true
let data = JSON.parse(sessionStorage.getItem('userdataOfgasstation'));
let params = { orgId: data.organization.id || "" }
this.http.get(`/api/services/app/StationFileLicense/GetStationList`,{params}).subscribe((info: any)=>{
this.http.get(`/api/services/app/StationFileLicense/GetStationList`, { params }).subscribe((info: any) => {
this.list = info.result
this.tableSpin = false
console.log(info.result)
})
}
@ -121,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();
})

29
src/app/pages/license/histories/histories.component.html

@ -5,7 +5,7 @@
<thead>
<tr>
<th [nzWidth]="'16%'">
<span style="margin-left: 25%;">证件名称</span>
<span style="margin-left:30px;">证件名称</span>
</th>
<th>证件编号</th>
<th>证件有效期</th>
@ -20,17 +20,26 @@
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<td>
<span style="margin-left: 25%;">证件名称</span>
<span style="margin-left: 30px;">{{item.licenseSnapshot.validityLicenseType.licenseName}}</span>
</td>
<td>证件编号</td>
<td>证件有效期</td>
<td>有效期类型</td>
<td>办理类型</td>
<td>通知内容</td>
<td>通知状态</td>
<td>处置状态</td>
<td>{{item.licenseSnapshot.licenseCode}}</td>
<td>{{item.licenseSnapshot.validityEndTime | date:"yyyy/MM/dd"}}</td>
<td>
<ng-container *ngIf="item.licenseSnapshot.isLongTerm; else elseTemplate">
长期
</ng-container>
<ng-template #elseTemplate>
{{item.licenseSnapshot.validityDays ? item.licenseSnapshot.validityDays+'天' : '/'}}
</ng-template>
</td>
<td>{{getHandleTypes(item.handleTypes)}}</td>
<td>{{item.notificationContent | notificationContent}}</td>
<td
[ngClass]="{'greenColor': item.licenseSnapshot.licenseViolationType == 1,'yellowColor': item.licenseSnapshot.licenseViolationType == 2,'redColor': item.licenseSnapshot.licenseViolationType == 3}">
{{item.licenseSnapshot.licenseViolationType | licenseViolationType}}</td>
<td [ngClass]="{'yellowColor': item.handleState == 3}">{{item.handleState | handleState}}</td>
<td class="operation">
<span class="blueColor">详情</span>
<span class="blueColor" (click)="details(item)">详情</span>
</td>
</tr>
</tbody>

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

33
src/app/pages/license/inform/inform.component.html

@ -5,7 +5,7 @@
<thead>
<tr>
<th [nzWidth]="'16%'">
<span style="margin-left: 25%;">证件名称</span>
<span style="margin-left: 30px;">证件名称</span>
</th>
<th>证件编号</th>
<th>证件有效期</th>
@ -20,19 +20,28 @@
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<td>
<span style="margin-left: 25%;">证件名称</span>
<span style="margin-left: 30px;">{{item.licenseSnapshot.validityLicenseType.licenseName}}</span>
</td>
<td>证件编号</td>
<td>证件有效期</td>
<td>有效期类型</td>
<td>办理类型</td>
<td>通知内容</td>
<td>通知状态</td>
<td>处置状态</td>
<td>{{item.licenseSnapshot.licenseCode}}</td>
<td>{{item.licenseSnapshot.validityEndTime | date:"yyyy/MM/dd"}}</td>
<td>
<ng-container *ngIf="item.licenseSnapshot.isLongTerm; else elseTemplate">
长期
</ng-container>
<ng-template #elseTemplate>
{{item.licenseSnapshot.validityDays ? item.licenseSnapshot.validityDays+'天' : '/'}}
</ng-template>
</td>
<td>{{getHandleTypes(item.handleTypes)}}</td>
<td>{{item.notificationContent | notificationContent}}</td>
<td
[ngClass]="{'greenColor': item.licenseSnapshot.licenseViolationType == 1,'yellowColor': item.licenseSnapshot.licenseViolationType == 2,'redColor': item.licenseSnapshot.licenseViolationType == 3}">
{{item.licenseSnapshot.licenseViolationType | licenseViolationType}}</td>
<td [ngClass]="{'yellowColor': item.handleState == 3}">{{item.handleState | handleState}}</td>
<td class="operation">
<span class="blueColor">忽略</span>
<span class="greyColor" (click)="dispose()">处置</span>
<span class="blueColor">申请延期</span>
<span class="blueColor" (click)="updateState(item,0)">忽略</span>
<span class="blueColor" (click)="updateState(item,1)">处置</span>
<span class="blueColor" (click)="updateState(item,2)">申请延期</span>
</td>
</tr>
</tbody>

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

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

@ -17,8 +17,8 @@
<div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;{{data.validityDays || 0}}天</p>
<div class="cutoffrule"></div>
<p>是否年检: &nbsp;&nbsp;<span *ngIf="data.isYearlyCheck"></span><span *ngIf="!data.isYearlyCheck"></span></p>
<div class="cutoffrule"></div>
<!-- <p>是否年检: &nbsp;&nbsp;<span *ngIf="data.isYearlyCheck">是</span><span *ngIf="!data.isYearlyCheck">否</span></p>
<div class="cutoffrule"></div> -->
<p>证件图片: &nbsp;&nbsp;
<img *ngIf="data.imageUrl && getFileType(data.imageUrl) == 'img'" [src]="data.imageUrl" (click)="viewImg(data.imageUrl)">
<img *ngIf="data.imageUrl && getFileType(data.imageUrl) == 'word'" src="../../../../assets/images/license/word.png" (click)="lookFile(data)">

2
src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html

@ -31,7 +31,7 @@
<p>
<span style="margin-right: 12px;">有效期类型: {{data2.validityDays || 0}}天</span>
<span>是否年检: <span *ngIf="data2.isYearlyCheck"></span><span *ngIf="!data2.isYearlyCheck"></span></span>
<!-- <span>是否年检: <span *ngIf="data2.isYearlyCheck">是</span><span *ngIf="!data2.isYearlyCheck">否</span></span> -->
</p>
<p>办理类型</p>

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

@ -5,14 +5,14 @@
<thead>
<tr>
<th [nzWidth]="'16%'">
<span style="margin-left: 25%;">证件名称</span>
<span style="margin-left: 30px;">证件名称</span>
</th>
<th>证件编号</th>
<th>证件有效期</th>
<th>附件</th>
<th>有效期类型</th>
<th>办理类型</th>
<th>是否年检</th>
<!-- <th>是否年检</th> -->
<th>提交时间</th>
<th>审核状态</th>
<th>预警状态</th>
@ -22,18 +22,29 @@
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<td>
<span style="margin-left: 25%;">{{item.licenseTypeName || ''}}</span>
<span style="margin-left: 30px;">{{item.licenseTypeName || ''}}</span>
</td>
<td>{{item.licenseCode || ''}}</td>
<td>{{item.validityEndTime | date:"yyyy/MM/dd"}}</td>
<td>{{item.isLongTerm ? '长期证照' : (item.validityEndTime | date:"yyyy/MM/dd")}}</td>
<td>
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'img'" [src]="item.imageUrl" (click)="viewImg(item.imageUrl)">
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'word'" src="../../../../assets/images/license/word.png" (click)="lookFile(item)">
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(item)">
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'img'" [src]="item.imageUrl"
(click)="viewImg(item.imageUrl)">
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'word'"
src="../../../../assets/images/license/word.png" (click)="lookFile(item)">
<img *ngIf="item.imageUrl && getFileType(item.imageUrl) == 'pdf'"
src="../../../../assets/images/license/pdf.png" (click)="lookFile(item)">
</td>
<td>
<ng-container *ngIf="item.isLongTerm; else elseTemplate">
长期
</ng-container>
<ng-template #elseTemplate>
{{item.validityDays ? item.validityDays+'天' : '/'}}
</ng-template>
</td>
<td>{{item.validityDays || 0}}天</td>
<td>{{getHandleTypes(item.handleTypes)}}</td>
<td><span *ngIf="item.isYearlyCheck"></span><span *ngIf="!item.isYearlyCheck"></span></td>
<!-- <td><span *ngIf="item.isYearlyCheck">是</span><span *ngIf="!item.isYearlyCheck">否</span></td> -->
<td>{{item.committedTime | date:"yyyy/MM/dd"}}<span *ngIf="!item.committedTime">未提交审核</span></td>
<td>
<span *ngIf="item.auditStatus == 0"></span>
@ -53,7 +64,8 @@
<span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="details(item)">详情</span>
<span class="blueColor" (click)="cancelReview(item)" *ngIf="item.auditStatus === 1">撤销审核</span>
<span class="blueColor" (click)="submitReview(item)" *ngIf="item.auditStatus === 0 || item.auditStatus === 4">提交审核</span>
<span class="blueColor" (click)="submitReview(item)"
*ngIf="item.auditStatus === 0 || item.auditStatus === 4">提交审核</span>
<span class="blueColor" *ngIf="item.auditStatus == 5">审核完成</span>
</td>
</tr>

2
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)
})

4
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: [

27
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]
}
}

6
src/app/system-management/update-of-license/add-update-of-license/add-update-of-license.component.html

@ -24,5 +24,11 @@
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="是否年检">是否年检</nz-form-label>
<nz-form-control nzErrorTip="请输入临期提醒时间">
<label nz-checkbox formControlName="isYearlyCheck"></label>
</nz-form-control>
</nz-form-item>
</form>
</div>

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

6
src/app/system-management/update-of-license/edit-update-of-license/edit-update-of-license.component.html

@ -24,5 +24,11 @@
</nz-input-group>
</nz-form-control>
</nz-form-item>
<nz-form-item>
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired nzFor="是否年检">是否年检</nz-form-label>
<nz-form-control nzErrorTip="请输入临期提醒时间">
<label nz-checkbox formControlName="isYearlyCheck"></label>
</nz-form-control>
</nz-form-item>
</form>
</div>

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

5
src/app/system-management/update-of-license/update-of-license.component.html

@ -9,12 +9,14 @@
</div>
</div>
<div class="tablebox">
<nz-table #basicTable [nzData]="listOfData" [nzShowPagination]='false' [nzPageSize]='999' [nzLoading]="isLoading">
<nz-table #basicTable [nzData]="listOfData" [nzShowPagination]='false' [nzPageSize]='999'
[nzLoading]="isLoading">
<thead>
<tr>
<th style="padding-left: 40px;">更新类证件</th>
<th>办理提醒时间</th>
<th>临期提醒时间</th>
<th>是否年检</th>
<th>操作</th>
</tr>
</thead>
@ -23,6 +25,7 @@
<td>{{data.licenseName}}</td>
<td>{{data.handleRemindDays}}天</td>
<td>{{data.closingRemindDays}}天</td>
<td>{{data.isYearlyCheck ? '是' : '否'}}</td>
<td class="operation">
<a (click)="edit(data)">编辑</a>
<a (click)="delete(data)">删除</a>

6
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)

11
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;
}
}

Loading…
Cancel
Save