|
|
|
<div class="box" id="detailsupdatecategory">
|
|
|
|
<div class="title">
|
|
|
|
<div class="titlecontent">
|
|
|
|
处置
|
|
|
|
</div>
|
|
|
|
<i nz-icon nzType="close" nzTheme="outline" (click)="destroyModal()"></i>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<p>{{data.gasStation.companyName}} - {{data.gasStation.stationName}}</p>
|
|
|
|
<div class="cutoffrule"></div>
|
|
|
|
<p>证件名称: {{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>证件编号: {{data.getData.licenseCode || ''}}</p>
|
|
|
|
<div class="cutoffrule"></div>
|
|
|
|
<p>证件有效期: <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>办理类型: {{data.getData.handleType || ''}}</p>
|
|
|
|
<div class="cutoffrule"></div>
|
|
|
|
<p>有效期类型: {{data.getData.validityDays || 0}}天</p>
|
|
|
|
<div class="cutoffrule"></div>
|
|
|
|
<p>是否年检: <span *ngIf="data.getData.isYearlyCheck">是</span><span *ngIf="!data.getData.isYearlyCheck">否</span></p>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="data.auditType == 3">
|
|
|
|
<p>有效期类型: <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>证件图片:
|
|
|
|
<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;" cols="30" rows="10" [(ngModel)]="textarea"></textarea>
|
|
|
|
<div class="btnbox">
|
|
|
|
<button nz-button type="button" class="ok" (click)="ok(true)">通过</button>
|
|
|
|
<button nz-button type="button" class="cancel" (click)="ok(false)">驳回</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|