邵佳豪 3 years ago
parent
commit
19c91a5fd2
  1. 38
      src/app/pages/license/file-category/details-file-category/details-file-category.component.html
  2. 31
      src/app/pages/license/file-category/details-file-category/details-file-category.component.ts
  3. 17
      src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html
  4. 6
      src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts
  5. 26
      src/app/pages/license/file-category/file-category.component.html
  6. 66
      src/app/pages/license/file-category/file-category.component.ts
  7. 46
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html
  8. 59
      src/app/pages/license/update-category/details-update-category/details-update-category.component.ts
  9. 38
      src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html
  10. 101
      src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts
  11. 43
      src/app/pages/license/update-category/update-category.component.html
  12. 132
      src/app/pages/license/update-category/update-category.component.ts

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

@ -7,42 +7,34 @@
</div> </div>
<div class="content"> <div class="content">
<p>证件名称: &nbsp;&nbsp;建设用地规划许可证</p> <p>证件名称: &nbsp;&nbsp;{{data.licenseTypeName}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;1523天</p> <p>有效期类型: &nbsp;&nbsp;<span *ngIf="data.validatyType == 0"></span><span *ngIf="data.validatyType == 1"></span><span *ngIf="data.validatyType == 2">不适用</span></p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>是否年检: &nbsp;&nbsp;</p> <!-- <p>是否年检: &nbsp;&nbsp;是</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div> -->
<p>证件图片: &nbsp;&nbsp;<img src="/api/Objects/sinochemweb/stationPhotos/175/timg.jpg" alt="" <p>证件图片: &nbsp;&nbsp;<img *ngIf="data.imageUrl" [src]="data.imageUrl" (click)="viewImg(data.imageUrl)"></p>
(click)="viewImg('/api/Objects/sinochemweb/stationPhotos/175/timg.jpg')"></p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p class="recordP"> <p class="recordP">
<span>审核记录</span> <span>审核记录</span>
<span> <span>
<span style="margin-right: 6px;"> <span style="margin-right: 6px;">
审核次数:6 审核次数:{{auditList.length}}
</span> </span>
<span> <span>
驳回次数:2 驳回次数:{{getRejectNum()}}
</span> </span>
</span> </span>
</p> </p>
<nz-timeline> <nz-timeline>
<nz-timeline-item> <nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">2022.04.02</span> <span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span>审核完成</span> <span *ngIf="item.auditStatus == 0"></span>
</nz-timeline-item> <span *ngIf="item.auditStatus == 1">审核中</span>
<nz-timeline-item> <span *ngIf="item.auditStatus == 2">审核通过</span>
<span style="margin-right: 12px;">2022.04.02</span> <span *ngIf="item.auditStatus == 3">审核驳回</span>
<span>审核完成</span> <span *ngIf="item.auditStatus == 4">已撤销审核</span>
</nz-timeline-item> <span *ngIf="item.auditStatus == 5">审核完成</span>
<nz-timeline-item>
<span style="margin-right: 12px;">2022.04.02</span>
<span>审核完成</span>
</nz-timeline-item>
<nz-timeline-item>
<span style="margin-right: 12px;">2022.04.02</span>
<span>审核完成</span>
</nz-timeline-item> </nz-timeline-item>
</nz-timeline> </nz-timeline>
<ng-template #soccerTemplate> <ng-template #soccerTemplate>

31
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 { HttpClient } from '@angular/common/http';
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service';
import Viewer from 'viewerjs'; import Viewer from 'viewerjs';
@Component({ @Component({
selector: 'app-details-file-category', selector: 'app-details-file-category',
templateUrl: './details-file-category.component.html', templateUrl: './details-file-category.component.html',
@ -12,19 +13,42 @@ import Viewer from 'viewerjs';
export class DetailsFileCategoryComponent implements OnInit { export class DetailsFileCategoryComponent implements OnInit {
@Input() data?: any; @Input() data?: any;
constructor(private modal: NzModalRef) { } constructor(private modal: NzModalRef, private http: HttpClient) { }
ngOnInit(): void { 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() { destroyModal() {
this.modal.destroy({ data: 'this the result data' }); this.modal.destroy({ data: 'this the result data' });
} }
//查看图片 //查看图片
viewImg(url) { viewImg(url) {
// url.split('?')[0]
let dom = document.getElementById(`viewerjs`) let dom = document.getElementById(`viewerjs`)
let pObjs = dom.childNodes; let pObjs = dom.childNodes;
let node = document.createElement("img") let node = document.createElement("img")
@ -42,4 +66,5 @@ export class DetailsFileCategoryComponent implements OnInit {
node.click(); node.click();
}, 0); }, 0);
} }
} }

17
src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html

@ -6,7 +6,7 @@
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i> <i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i>
</div> </div>
<form nz-form [formGroup]="validateForm" class="form"> <form nz-form [formGroup]="validateForm" class="form">
<p>证件名称: 建设用地规划许可证</p> <p>证件名称: {{data2.licenseTypeName || ''}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
@ -14,8 +14,10 @@
<nz-form-item> <nz-form-item>
<nz-form-control> <nz-form-control>
<nz-select formControlName="type"> <nz-select formControlName="type" [(ngModel)]="validatyType">
<nz-option nzValue="0" nzLabel="不适用"></nz-option> <nz-option nzValue="0" nzLabel="有"></nz-option>
<nz-option nzValue="1" nzLabel="无"></nz-option>
<nz-option nzValue="2" nzLabel="不适用"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -24,13 +26,12 @@
<div class="uploadDivbox"> <div class="uploadDivbox">
<div class="uploadDiv" style="margin-right: 12px;"> <div class="uploadDiv" style="margin-right: 12px;">
<img *ngIf="imageUrl" style="width: 100%;height: 100%;cursor: pointer;" [src]="imageUrl" alt="" <img *ngIf="data2 && data2.imageUrl" style="width: 100%;height: 100%;cursor: pointer;" [src]="data2.imageUrl" (click)="viewImg(data2.imageUrl)">
(click)="viewImg(imageUrl)"> <input *ngIf="!data2.imageUrl" (change)="filechange($event)" class="fileinput" type="file" name="" id="">
<input *ngIf="!imageUrl" (change)="filechange($event)" class="fileinput" type="file" name="" id=""> <button *ngIf="!data2.imageUrl" nz-button [nzLoading]=""><i nz-icon nzType="upload"
<button *ngIf="!imageUrl" nz-button [nzLoading]=""><i nz-icon nzType="upload"
nzTheme="outline"></i>上传附件</button> nzTheme="outline"></i>上传附件</button>
</div> </div>
<div class="uploadDiv" *ngIf="imageUrl"> <div class="uploadDiv" *ngIf="data2.imageUrl">
<input (change)="filechange($event)" class="fileinput" type="file" name="" id=""> <input (change)="filechange($event)" class="fileinput" type="file" name="" id="">
<button nz-button [nzLoading]=""><i nz-icon nzType="upload" nzTheme="outline"></i>重新上传</button> <button nz-button [nzLoading]=""><i nz-icon nzType="upload" nzTheme="outline"></i>重新上传</button>
</div> </div>

6
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]] type: [null, [Validators.required]]
}); });
this.data2 = JSON.parse(JSON.stringify(this.data)) this.data2 = JSON.parse(JSON.stringify(this.data))
this.validatyType = (this.data2.validatyType).toString()
console.log(this.data2)
} }
validatyType: string
isLongTerm = false isLongTerm = false
imageUrl = '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg' imageUrl = '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg'
validityChange($event) { validityChange($event) {
console.log($event)
this.isLongTerm = $event this.isLongTerm = $event
} }
@ -70,6 +72,7 @@ export class EditFileCategoryComponent implements OnInit {
let dataObj = data as any; let dataObj = data as any;
let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName; let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName;
this.imageUrl = filePath this.imageUrl = filePath
this.data2.imageUrl = filePath
console.log('上传成功', filePath) console.log('上传成功', filePath)
resolve('success') resolve('success')
}); });
@ -85,6 +88,7 @@ export class EditFileCategoryComponent implements OnInit {
let dataObj = value as any; let dataObj = value as any;
let filePath = dataObj.filePath let filePath = dataObj.filePath
this.imageUrl = filePath this.imageUrl = filePath
this.data2.imageUrl = filePath
console.log('上传成功', filePath) console.log('上传成功', filePath)
}); });

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

@ -17,19 +17,31 @@
<tbody id="table"> <tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index"> <tr *ngFor="let item of headerTable.data;let key = index">
<td> <td>
<span style="margin-left: 25%;">证件名称</span> <span style="margin-left: 25%;">{{item.licenseTypeName || ''}}</span>
</td>
<td>
<span *ngIf="item.validatyType == 0"></span>
<span *ngIf="item.validatyType == 1"></span>
<span *ngIf="item.validatyType == 2">不适用</span>
</td>
<td>
<img *ngIf="item.imageUrl" [src]="item.imageUrl" (click)="viewImg(item.imageUrl)">
</td> </td>
<td>有效期类型</td> <td>{{item.committedTime | date:"yyyy/MM/dd"}}<span *ngIf="!item.committedTime">未提交审核</span></td>
<td> <td>
<img src="../../../../assets/images/bgImg.png" alt="" <span *ngIf="item.auditStatus == 0"></span>
(click)="viewImg('../../../../assets/images/bgImg.png')"> <span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">未提交审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
</td> </td>
<td>提交时间</td>
<td>审核状态</td>
<td class="operation"> <td class="operation">
<span class="blueColor" (click)="edit(item)">编辑</span> <span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="details(item)">详情</span> <span class="blueColor" (click)="details(item)">详情</span>
<span class="blueColor">提交审核</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" *ngIf="item.auditStatus == 5">审核完成</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

66
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) { } constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient) { }
tableSpin = false 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 tableScrollHeight
ngOnInit(): void { ngOnInit(): void {
@ -26,10 +26,21 @@ export class FileCategoryComponent implements OnInit {
fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => {
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' 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) { viewImg(url) {
// url.split('?')[0]
let dom = document.getElementById(`viewerjs`) let dom = document.getElementById(`viewerjs`)
let pObjs = dom.childNodes; let pObjs = dom.childNodes;
let node = document.createElement("img") let node = document.createElement("img")
@ -49,11 +60,10 @@ export class FileCategoryComponent implements OnInit {
} }
dispose() { dispose() {
console.log('处置')
} }
edit(item) { edit(item) {
console.log('item', item)
const modal = this.modal.create({ const modal = this.modal.create({
nzContent: EditFileCategoryComponent, nzContent: EditFileCategoryComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
@ -71,34 +81,21 @@ export class FileCategoryComponent implements OnInit {
nzFooter: null, nzFooter: null,
nzClosable: false, nzClosable: false,
nzOnOk: async () => { nzOnOk: async () => {
if (instance.validateForm.valid) { await new Promise(resolve => {
await new Promise(resolve => { instance.data2.validatyType = Number(instance.validatyType)
let body = { this.http.post('/api/services/app/StationFileLicense/Create', instance.data2).subscribe(data => {
id: item.id, resolve(data);
name: instance.validateForm.value.name, this.getStationList();
storageLocation: instance.validateForm.value.storageLocation, this.message.create('success', '修改成功!');
productionDate: moment(instance.validateForm.value.productionDate).format('yyyy-MM-DD'), return true
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
// })
}) })
} else { })
this.message.create('warning', '请填写完整!');
return false
}
} }
}); });
const instance = modal.getContentComponent(); const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => { }); modal.afterClose.subscribe(result => { });
} }
details(item) { details(item) {
console.log('item', item)
const modal = this.modal.create({ const modal = this.modal.create({
nzContent: DetailsFileCategoryComponent, nzContent: DetailsFileCategoryComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
@ -122,4 +119,23 @@ export class FileCategoryComponent implements OnInit {
const instance = modal.getContentComponent(); const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => { }); 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();
})
}
} }

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

@ -7,48 +7,44 @@
</div> </div>
<div class="content"> <div class="content">
<p>证件名称: &nbsp;&nbsp;营业执照</p> <p>证件名称: &nbsp;&nbsp;{{data.licenseTypeName || ''}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>证件编号: &nbsp;&nbsp;Z201800041501</p> <p>证件编号: &nbsp;&nbsp;{{data.licenseCode || ''}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>证件有效期: &nbsp;&nbsp;2018.12.02—2025.01.12</p> <p>证件有效期: &nbsp;&nbsp;<span *ngIf="!data.isLongTerm">{{data.validityStartTime | date:"yyyy/MM/dd"}} - </span>{{data.validityEndTime | date:"yyyy/MM/dd"}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>办理类型: &nbsp;&nbsp;年度公示</p> <p>办理类型: &nbsp;&nbsp;{{data.handleType || ''}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;1523</p> <p>有效期类型: &nbsp;&nbsp;{{data.validityDays || 0}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>是否年检: &nbsp;&nbsp;</p> <p>是否年检: &nbsp;&nbsp;<span *ngIf="data.isYearlyCheck"></span><span *ngIf="!data.isYearlyCheck"></span></p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p>证件图片: &nbsp;&nbsp;<img src="/api/Objects/sinochemweb/stationPhotos/175/timg.jpg" alt="" <p>证件图片: &nbsp;&nbsp;
(click)="viewImg('/api/Objects/sinochemweb/stationPhotos/175/timg.jpg')"></p> <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)">
<img *ngIf="data.imageUrl && getFileType(data.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(data)">
</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
<p class="recordP"> <p class="recordP">
<span>审核记录</span> <span>审核记录</span>
<span> <span>
<span style="margin-right: 6px;"> <span style="margin-right: 6px;">
审核次数:6 审核次数:{{auditList.length}}
</span> </span>
<span> <span>
驳回次数:2 驳回次数:{{getRejectNum()}}
</span> </span>
</span> </span>
</p> </p>
<nz-timeline> <nz-timeline>
<nz-timeline-item> <nz-timeline-item *ngFor="let item of auditList">
<span style="margin-right: 12px;">2022.04.02</span> <span style="margin-right: 12px;">{{item.creationTime | date:"yyyy/MM/dd"}}</span>
<span>审核完成</span> <span *ngIf="item.auditStatus == 0"></span>
</nz-timeline-item> <span *ngIf="item.auditStatus == 1">审核中</span>
<nz-timeline-item> <span *ngIf="item.auditStatus == 2">审核通过</span>
<span style="margin-right: 12px;">2022.04.02</span> <span *ngIf="item.auditStatus == 3">审核驳回</span>
<span>审核完成</span> <span *ngIf="item.auditStatus == 4">已撤销审核</span>
</nz-timeline-item> <span *ngIf="item.auditStatus == 5">审核完成</span>
<nz-timeline-item>
<span style="margin-right: 12px;">2022.04.02</span>
<span>审核完成</span>
</nz-timeline-item>
<nz-timeline-item>
<span style="margin-right: 12px;">2022.04.02</span>
<span>审核完成</span>
</nz-timeline-item> </nz-timeline-item>
</nz-timeline> </nz-timeline>
<ng-template #soccerTemplate> <ng-template #soccerTemplate>

59
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 { HttpClient } from '@angular/common/http';
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service';
import Viewer from 'viewerjs'; import Viewer from 'viewerjs';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({ @Component({
selector: 'app-details-update-category', selector: 'app-details-update-category',
@ -12,19 +13,72 @@ import Viewer from 'viewerjs';
}) })
export class DetailsUpdateCategoryComponent implements OnInit { export class DetailsUpdateCategoryComponent implements OnInit {
@Input() data?: any; @Input() data?: any;
constructor(private modal: NzModalRef) { } constructor(private modal: NzModalRef,private message: NzMessageService,private http: HttpClient) { }
ngOnInit(): void { 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() { destroyModal() {
this.modal.destroy({ data: 'this the result data' }); 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) { viewImg(url) {
// url.split('?')[0]
let dom = document.getElementById(`viewerjs`) let dom = document.getElementById(`viewerjs`)
let pObjs = dom.childNodes; let pObjs = dom.childNodes;
let node = document.createElement("img") let node = document.createElement("img")
@ -42,4 +96,5 @@ export class DetailsUpdateCategoryComponent implements OnInit {
node.click(); node.click();
}, 0); }, 0);
} }
} }

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

@ -6,7 +6,7 @@
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i> <i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i>
</div> </div>
<form nz-form [formGroup]="validateForm" class="form"> <form nz-form [formGroup]="validateForm" class="form">
<p>证件名称: 营业执照</p> <p>证件名称: {{data2.licenseTypeName}}</p>
<div class="cutoffrule"></div> <div class="cutoffrule"></div>
@ -14,7 +14,7 @@
<nz-form-item> <nz-form-item>
<nz-form-control> <nz-form-control>
<nz-input-group> <nz-input-group>
<input nz-input type="text" formControlName="number" placeholder="请输入证件编号" /> <input nz-input type="text" formControlName="number" placeholder="请输入证件编号" [(ngModel)]="data2.licenseCode"/>
</nz-input-group> </nz-input-group>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -22,24 +22,32 @@
<p>证件有效期<span style="color: red;">*</span></p> <p>证件有效期<span style="color: red;">*</span></p>
<div class="validity"> <div class="validity">
<label nz-checkbox (ngModelChange)="validityChange($event)" formControlName="isLongTerm"> <label nz-checkbox (ngModelChange)="validityChange($event)" [(ngModel)]="data2.isLongTerm" formControlName="isLongTerm">
<span>长期</span> <span>长期</span>
</label> </label>
<nz-date-picker *ngIf="isLongTerm" nzPlaceHolder="请选择开始日期"></nz-date-picker> <nz-date-picker *ngIf="data2.isLongTerm" nzPlaceHolder="请选择开始日期" [(ngModel)]="isLongTermTime" (ngModelChange)="onChange($event)" formControlName="isLongTermTime"></nz-date-picker>
<nz-range-picker *ngIf="!isLongTerm"></nz-range-picker> <nz-range-picker *ngIf="!data2.isLongTerm" [(ngModel)]="isNoLongTermTime" (ngModelChange)="onChange($event)" formControlName="isNoLongTermTime"></nz-range-picker>
</div> </div>
<p> <p>
<span style="margin-right: 12px;">有效期类型: 1456</span> <span style="margin-right: 12px;">有效期类型: {{data2.validityDays || 0}}</span>
<span>是否年检: 是</span> <span>是否年检: <span *ngIf="data2.isYearlyCheck"></span><span *ngIf="!data2.isYearlyCheck"></span></span>
</p> </p>
<p>办理类型</p> <p>办理类型</p>
<nz-form-item> <nz-form-item>
<nz-form-control> <nz-form-control>
<nz-select formControlName="type"> <nz-select formControlName="type" nzMode="multiple" [(ngModel)]="typeList">
<nz-option nzValue="0" nzLabel="年度公示"></nz-option> <nz-option nzValue="年检" nzLabel="年检"></nz-option>
<nz-option nzValue="年度公示" nzLabel="年度公示"></nz-option>
<nz-option nzValue="年度复训" nzLabel="年度复训"></nz-option>
<nz-option nzValue="年度检测" nzLabel="年度检测"></nz-option>
<nz-option nzValue="年度执行报告" nzLabel="年度执行报告"></nz-option>
<nz-option nzValue="到期换证" nzLabel="到期换证"></nz-option>
<nz-option nzValue="到期检测" nzLabel="到期检测"></nz-option>
<nz-option nzValue="到期评价" nzLabel="到期评价"></nz-option>
<nz-option nzValue="到期备案" nzLabel="到期备案"></nz-option>
</nz-select> </nz-select>
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@ -48,13 +56,15 @@
<div class="uploadDivbox"> <div class="uploadDivbox">
<div class="uploadDiv" style="margin-right: 12px;"> <div class="uploadDiv" style="margin-right: 12px;">
<img *ngIf="imageUrl" style="width: 100%;height: 100%;cursor: pointer;" [src]="imageUrl" alt="" (click)="viewImg(imageUrl)"> <img *ngIf="data2.imageUrl && getFileType(data2.imageUrl) == 'img'" style="width: 100%;height: 100%;cursor: pointer;" [src]="data2.imageUrl" (click)="viewImg(data2.imageUrl)">
<input *ngIf="!imageUrl" (change)="filechange($event)" class="fileinput" type="file" name="" <img *ngIf="data2.imageUrl && getFileType(data2.imageUrl) == 'word'" src="../../../../assets/images/license/word.png" (click)="lookFile(data2)">
id=""> <img *ngIf="data2.imageUrl && getFileType(data2.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(data2)">
<button *ngIf="!imageUrl" nz-button [nzLoading]=""><i nz-icon nzType="upload"
<input *ngIf="!data2.imageUrl" (change)="filechange($event)" class="fileinput" type="file" name="" id="">
<button *ngIf="!data2.imageUrl" nz-button [nzLoading]=""><i nz-icon nzType="upload"
nzTheme="outline"></i>上传附件</button> nzTheme="outline"></i>上传附件</button>
</div> </div>
<div class="uploadDiv" *ngIf="imageUrl"> <div class="uploadDiv" *ngIf="data2.imageUrl">
<input (change)="filechange($event)" class="fileinput" type="file" name="" id=""> <input (change)="filechange($event)" class="fileinput" type="file" name="" id="">
<button nz-button [nzLoading]=""><i nz-icon nzType="upload" nzTheme="outline"></i>重新上传</button> <button nz-button [nzLoading]=""><i nz-icon nzType="upload" nzTheme="outline"></i>重新上传</button>
</div> </div>

101
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 { HttpClient } from '@angular/common/http';
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service';
import Viewer from 'viewerjs'; import Viewer from 'viewerjs';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({ @Component({
selector: 'app-edit-update-category', selector: 'app-edit-update-category',
templateUrl: './edit-update-category.component.html', templateUrl: './edit-update-category.component.html',
@ -14,33 +16,113 @@ export class EditUpdateCategoryComponent implements OnInit {
@Input() data?: any; @Input() data?: any;
validateForm!: FormGroup; 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 { ngOnInit(): void {
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
number: [null, [Validators.required]], number: [null, [Validators.required]],
isLongTerm: [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)) 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' imageUrl = '/api/Objects/sinochemweb/stationPhotos/175/timg.jpg'
validityChange($event) {
console.log($event)
this.isLongTerm = $event
}
destroyModal() { destroyModal() {
this.modal.destroy({ data: 'this the result data' }); this.modal.destroy({ data: 'this the result data' });
} }
ok() { ok() {
this.modal.triggerOk() 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 isLoadingSave: boolean = false
@ -72,6 +154,7 @@ export class EditUpdateCategoryComponent implements OnInit {
let dataObj = data as any; let dataObj = data as any;
let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName; let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName;
this.imageUrl = filePath this.imageUrl = filePath
this.data2.imageUrl = filePath
console.log('上传成功', filePath) console.log('上传成功', filePath)
resolve('success') resolve('success')
}); });
@ -87,6 +170,7 @@ export class EditUpdateCategoryComponent implements OnInit {
let dataObj = value as any; let dataObj = value as any;
let filePath = dataObj.filePath let filePath = dataObj.filePath
this.imageUrl = filePath this.imageUrl = filePath
this.data2.imageUrl = filePath
console.log('上传成功', filePath) console.log('上传成功', filePath)
}); });
@ -94,7 +178,6 @@ export class EditUpdateCategoryComponent implements OnInit {
//查看图片 //查看图片
viewImg(url) { viewImg(url) {
// url.split('?')[0]
let dom = document.getElementById(`viewerjs`) let dom = document.getElementById(`viewerjs`)
let pObjs = dom.childNodes; let pObjs = dom.childNodes;
let node = document.createElement("img") let node = document.createElement("img")

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

@ -22,28 +22,39 @@
<tbody id="table"> <tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index"> <tr *ngFor="let item of headerTable.data;let key = index">
<td> <td>
<span style="margin-left: 25%;">证件名称</span> <span style="margin-left: 25%;">{{item.licenseTypeName || ''}}</span>
</td>
<td>{{item.licenseCode || ''}}</td>
<td>{{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)">
</td>
<td>{{item.validityDays || 0}}天</td>
<td>{{item.handleType}}</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>
<span *ngIf="item.auditStatus == 1">审核中</span>
<span *ngIf="item.auditStatus == 2">审核通过</span>
<span *ngIf="item.auditStatus == 3">审核驳回</span>
<span *ngIf="item.auditStatus == 4">未提交审核</span>
<span *ngIf="item.auditStatus == 5">审核完成</span>
</td> </td>
<td>证件编号</td>
<td>证件有效期</td>
<td> <td>
<img *ngIf="item.type == 'img'" [src]="item.url" alt="" <span *ngIf="item.licenseViolationType == 0"></span>
(click)="viewImg('../../../../assets/images/bgImg.png')"> <span *ngIf="item.licenseViolationType == 1">办理提醒</span>
<img *ngIf="item.type == 'word'" src="../../../../assets/images/license/word.png" alt="" <span *ngIf="item.licenseViolationType == 2">临期提醒</span>
(click)="lookFile(item)"> <span *ngIf="item.licenseViolationType == 3">逾期报警</span>
<img *ngIf="item.type == 'pdf'" src="../../../../assets/images/license/pdf.png" alt=""
(click)="lookFile(item)">
</td> </td>
<td>有效期类型</td>
<td>办理类型</td>
<td>是否年检</td>
<td>提交时间</td>
<td>审核状态</td>
<td>预警状态</td>
<td class="operation"> <td class="operation">
<span class="blueColor" (click)="edit(item)">编辑</span> <span class="blueColor" (click)="edit(item)">编辑</span>
<span class="blueColor" (click)="details(item)">详情</span> <span class="blueColor" (click)="details(item)">详情</span>
<span class="blueColor">提交审核</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" *ngIf="item.auditStatus == 5">审核完成</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

132
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) { } constructor(private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient) { }
tableSpin = false tableSpin = false
list = [ 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' },
]
tableScrollHeight tableScrollHeight
ngOnInit(): void { ngOnInit(): void {
@ -31,12 +27,34 @@ export class UpdateCategoryComponent implements OnInit {
fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => { fromEvent(window, 'resize').pipe(debounceTime(100)).subscribe((event) => {
this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px' this.tableScrollHeight = (document.getElementById('tablebox').clientHeight - 42) + 'px'
}); });
let xxx = '/api/Objects/sinochemweb/stationPhotos/853/10.6 MB.pdf' this.getStationList()
// console.log(666,xxx.split('.')[xxx.split('.').length - 1])
} }
//获取当前油站档案类证照
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) { viewImg(url) {
// url.split('?')[0]
let dom = document.getElementById(`viewerjs`) let dom = document.getElementById(`viewerjs`)
let pObjs = dom.childNodes; let pObjs = dom.childNodes;
let node = document.createElement("img") let node = document.createElement("img")
@ -54,53 +72,28 @@ export class UpdateCategoryComponent implements OnInit {
node.click(); node.click();
}, 0); }, 0);
} }
//查看文件 //查看文件
lookFile(item) { lookFile(item) {
console.log('item', item) if (!item.imageUrl) {
return
let suffix = item.url.split('.')[item.url.split('.').length - 1].toLowerCase() }
if (item.type == 'word') { if (this.getFileType(item.imageUrl) == 'word') {
let arr = item.url.split('.') let arr = item.imageUrl.split('.')
arr[arr.length - 1] = 'pdf' arr[arr.length - 1] = 'pdf'
window.open(arr.join('.')) window.open(arr.join('.'))
} else if (item.type == 'pdf') { } else if (this.getFileType(item.imageUrl) == 'pdf') {
window.open(item.url) window.open(item.imageUrl)
} else { } else {
// let config = new MatSnackBarConfig(); this.message.create('warning', '暂不支持查看!');
// config.verticalPosition = 'top';
// config.duration = 3000
// this.snackBar.open('该文件类型暂不支持在线查看', '确定', config);
} }
// 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() { dispose() {
console.log('处置')
} }
edit(item) { edit(item) {
console.log('item', item)
const modal = this.modal.create({ const modal = this.modal.create({
nzContent: EditUpdateCategoryComponent, nzContent: EditUpdateCategoryComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
@ -120,20 +113,24 @@ export class UpdateCategoryComponent implements OnInit {
nzOnOk: async () => { nzOnOk: async () => {
if (instance.validateForm.valid) { if (instance.validateForm.valid) {
await new Promise(resolve => { await new Promise(resolve => {
let body = { let body = instance.data2
id: item.id, // 日期
name: instance.validateForm.value.name, if (body.isLongTerm) {
storageLocation: instance.validateForm.value.storageLocation, body.validityStartTime = instance.isLongTermTime
productionDate: moment(instance.validateForm.value.productionDate).format('yyyy-MM-DD'), } else {
maintenanceDate: moment(instance.validateForm.value.maintenanceDate).format('yyyy-MM-DD'), body.validityStartTime = instance.isNoLongTermTime[0] || new Date()
validityEndTime: moment(instance.validateForm.value.validityEndTime).format('yyyy-MM-DD'), body.validityEndTime = instance.isNoLongTermTime[1] || new Date()
organizationUnitId: item.organizationUnitId
} }
// this.http.put('/api/services/app/FireEquipment/Update', body).subscribe(data => { // 办理类型
// resolve(data) if (instance.typeList.length) {
// this.message.create('success', '修改成功!'); body.handleType = instance.typeList.join("/")
// return true }
// }) this.http.post('/api/services/app/StationValidityLicense/Create', body).subscribe(data => {
resolve(data);
this.getStationList();
this.message.create('success', '修改成功!');
return true
})
}) })
} else { } else {
this.message.create('warning', '请填写完整!'); this.message.create('warning', '请填写完整!');
@ -144,8 +141,8 @@ export class UpdateCategoryComponent implements OnInit {
const instance = modal.getContentComponent(); const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => { }); modal.afterClose.subscribe(result => { });
} }
details(item) { details(item) {
console.log('item', item)
const modal = this.modal.create({ const modal = this.modal.create({
nzContent: DetailsUpdateCategoryComponent, nzContent: DetailsUpdateCategoryComponent,
nzViewContainerRef: this.viewContainerRef, nzViewContainerRef: this.viewContainerRef,
@ -169,4 +166,23 @@ export class UpdateCategoryComponent implements OnInit {
const instance = modal.getContentComponent(); const instance = modal.getContentComponent();
modal.afterClose.subscribe(result => { }); 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();
})
}
} }

Loading…
Cancel
Save