|
|
|
@ -37,32 +37,47 @@
|
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<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> |
|
|
|
|
<p>证照效期: {{data.getData.isLongTerm ? '长期证照' : (data.getData.validityEndTime | date:"yyyy/MM/dd")}}</p> |
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<p>办理类型: {{getHandleTypes(data.getData.handleTypes)}}</p> |
|
|
|
|
<p>办理类型: {{getHandleTypes(data.getData.handleTypesDefault)}}</p> |
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<p>有效期类型: {{data.getData.validityDays || 0}}天</p> |
|
|
|
|
<p>有效天数: |
|
|
|
|
<ng-container *ngIf="data.getData.isLongTerm; else elseTemplate"> |
|
|
|
|
长期 |
|
|
|
|
</ng-container> |
|
|
|
|
<ng-template #elseTemplate> |
|
|
|
|
{{data.getData.validityDays ? data.getData.validityDays+'天' : '/'}} |
|
|
|
|
</ng-template> |
|
|
|
|
</p> |
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<p>是否年检: <span *ngIf="data.getData.isYearlyCheck">是</span><span |
|
|
|
|
*ngIf="!data.getData.isYearlyCheck">否</span></p> |
|
|
|
|
<p>是否年检: <span *ngIf="data.getData.isYearlyCheck">是</span><span *ngIf="!data.getData.isYearlyCheck">否</span></p> |
|
|
|
|
</div> |
|
|
|
|
<div *ngIf="data.auditType == 3"> |
|
|
|
|
<p>证照名称: {{data.getData.licenseTypeName}}</p> |
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<p>有无证照: <span *ngIf="data.getData.validatyType == 0">不适用</span><span |
|
|
|
|
*ngIf="data.getData.validatyType == 1">无</span><span *ngIf="data.getData.validatyType == 2">有</span> |
|
|
|
|
<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> |
|
|
|
|
<p>说明: {{data.getData.remark}}</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="cutoffrule"></div> |
|
|
|
|
<p [hidden]="data.getData.imageUrl === undefined">附件: |
|
|
|
|
<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)"> |
|
|
|
|
src="../../../../assets/images/license/word.png" (click)="lookFile(data.getData.imageUrl)"> |
|
|
|
|
<img *ngIf="data.getData.imageUrl && getFileType(data.getData.imageUrl) == 'pdf'" |
|
|
|
|
src="../../../../assets/images/license/pdf.png" (click)="lookFile(data.getData)"> |
|
|
|
|
src="../../../../assets/images/license/pdf.png" (click)="lookFile(data.getData.imageUrl)"> |
|
|
|
|
<div class="cutoffrule" [hidden]="data.getData.imageUrl === undefined"></div> |
|
|
|
|
<p *ngIf="data.getData.hasAttachmentDefault && data.getData.attachment">附件副本: |
|
|
|
|
<img *ngIf="data.getData.attachment && getFileType(data.getData.attachment) == 'img'" |
|
|
|
|
[src]="data.getData.attachment" (click)="viewImg(data.getData.attachment)"> |
|
|
|
|
<img *ngIf="data.getData.attachment && getFileType(data.getData.attachment) == 'word'" |
|
|
|
|
src="../../../../assets/images/license/word.png" (click)="lookFile(data.getData.attachment)"> |
|
|
|
|
<img *ngIf="data.getData.attachment && getFileType(data.getData.attachment) == 'pdf'" |
|
|
|
|
src="../../../../assets/images/license/pdf.png" (click)="lookFile(data.getData.attachment)"> |
|
|
|
|
<div class="cutoffrule" *ngIf="data.getData.hasAttachmentDefault && data.getData.attachment"></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> |
|
|
|
|