Browse Source

审批对接接口

dev
陈鹏飞 3 years ago
parent
commit
0abba86ae2
  1. 47
      src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html
  2. 42
      src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts
  3. 30
      src/app/pages/audit/audit-ing/audit-ing.component.html
  4. 173
      src/app/pages/audit/audit-ing/audit-ing.component.ts

47
src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.html

@ -7,29 +7,38 @@
</div>
<div class="content">
<p>山东省某中化公司-淄博区域-淄博市第十六加油站</p>
<div class="cutoffrule"></div>
<p>证件名称: &nbsp;&nbsp;营业执照</p>
<div class="cutoffrule"></div>
<p>证件编号: &nbsp;&nbsp;Z201800041501</p>
<div class="cutoffrule"></div>
<p>证件有效期: &nbsp;&nbsp;2018.12.02—2025.01.12</p>
<div class="cutoffrule"></div>
<p>办理类型: &nbsp;&nbsp;年度公示</p>
<div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;1523天</p>
<div class="cutoffrule"></div>
<p>是否年检: &nbsp;&nbsp;</p>
<p>{{data.gasStation.companyName}} - {{data.gasStation.stationName}}</p>
<div class="cutoffrule"></div>
<p>证件名称: &nbsp;&nbsp;{{data.getData.licenseTypeName}}</p>
<div class="cutoffrule"></div>
<div *ngIf="data.auditType == 0"></div>
<div *ngIf="data.auditType == 1"></div>
<div *ngIf="data.auditType == 2">
<p>证件编号: &nbsp;&nbsp;{{data.getData.licenseCode || ''}}</p>
<div class="cutoffrule"></div>
<p>证件有效期: &nbsp;&nbsp;<span *ngIf="!data.getData.isLongTerm">{{data.getData.validityStartTime | date:"yyyy/MM/dd"}} - </span>{{data.getData.validityEndTime | date:"yyyy/MM/dd"}}</p>
<div class="cutoffrule"></div>
<p>办理类型: &nbsp;&nbsp;{{data.getData.handleType || ''}}</p>
<div class="cutoffrule"></div>
<p>有效期类型: &nbsp;&nbsp;{{data.getData.validityDays || 0}}天</p>
<div class="cutoffrule"></div>
<p>是否年检: &nbsp;&nbsp;<span *ngIf="data.getData.isYearlyCheck"></span><span *ngIf="!data.getData.isYearlyCheck"></span></p>
</div>
<div *ngIf="data.auditType == 3">
<p>有效期类型: &nbsp;&nbsp;<span *ngIf="data.getData.validatyType == 0"></span><span *ngIf="data.getData.validatyType == 1"></span><span *ngIf="data.getData.validatyType == 2">不适用</span></p>
<div class="cutoffrule"></div>
</div>
<div class="cutoffrule"></div>
<p>证件图片: &nbsp;&nbsp;<img src="/api/Objects/sinochemweb/stationPhotos/175/timg.jpg" alt=""
(click)="viewImg('/api/Objects/sinochemweb/stationPhotos/175/timg.jpg')"></p>
<p>证件图片: &nbsp;&nbsp;
<img *ngIf="data.getData.imageUrl && getFileType(data.getData.imageUrl) == 'img'" [src]="data.getData.imageUrl" (click)="viewImg(data.getData.imageUrl)">
<img *ngIf="data.getData.imageUrl && getFileType(data.getData.imageUrl) == 'word'" src="../../../../assets/images/license/word.png" (click)="lookFile(data.getData)">
<img *ngIf="data.getData.imageUrl && getFileType(data.getData.imageUrl) == 'pdf'" src="../../../../assets/images/license/pdf.png" (click)="lookFile(data.getData)">
<div class="cutoffrule"></div>
<p>审批意见:</p>
<textarea style="background: #173350;height: 100px;width: 100%;border-radius: 0;border: 0;color: white;" name=""
id="" cols="30" rows="10"></textarea>
<textarea style="background: #173350;height: 100px;width: 100%;border-radius: 0;border: 0;color: white;" cols="30" rows="10" [(ngModel)]="textarea"></textarea>
<div class="btnbox">
<button nz-button type="button" class="ok" (click)="ok()">通过</button>
<button nz-button type="button" class="cancel" (click)="destroyModal()">驳回</button>
<button nz-button type="button" class="ok" (click)="ok(true)">通过</button>
<button nz-button type="button" class="cancel" (click)="ok(false)">驳回</button>
</div>
</div>

42
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', '暂不支持查看!');
}
}
}

30
src/app/pages/audit/audit-ing/audit-ing.component.html

@ -9,7 +9,7 @@
</th>
<th>审批信息</th>
<th>加油站名称</th>
<th>区域</th>
<th [nzWidth]="'16%'">区域</th>
<th>省公司</th>
<th>提交时间</th>
<th>审批状态</th>
@ -19,17 +19,29 @@
<tbody id="table">
<tr *ngFor="let item of headerTable.data;let key = index">
<td>
<span style="margin-left: 25%;">审批类型</span>
<span style="margin-left: 25%;">{{item.auditTitle || ''}}</span>
</td>
<td>
<span *ngIf="item.auditType == 0">油站信息</span>
<span *ngIf="item.auditType == 1">更新类证照提醒时间</span>
<span *ngIf="item.auditType == 2">更新类证照</span>
<span *ngIf="item.auditType == 3">档案类证照</span>
</td>
<td>{{item.gasStation.stationName}}</td>
<td>{{item.gasStation.locationName}}</td>
<td>{{item.gasStation.companyName}}</td>
<td>{{item.committedTime | date:"yyyy/MM/dd"}}</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>省公司</td>
<td>提交时间</td>
<td>审批状态</td>
<td class="operation">
<span class="blueColor" (click)="dispose(item)">处置</span>
<span class="blueColor">详情</span>
<span class="blueColor" (click)="details(item)">详情</span>
</td>
</tr>
</tbody>

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

Loading…
Cancel
Save