This commit is contained in:
wangshiming
2021-12-07 10:48:27 +08:00
parent da9ad95fe3
commit 2af0eedb2d
2 changed files with 16 additions and 19 deletions

View File

@ -1,7 +1,7 @@
<!--
* @Author: your name
* @Date: 2021-12-03 11:10:14
* @LastEditTime: 2021-12-07 10:18:18
* @LastEditTime: 2021-12-07 10:44:55
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\supply-management\components\vehicle\vehicle.component.html
@ -54,7 +54,7 @@
</nz-card>
<nz-modal [(nzVisible)]="isVisibleView" [nzWidth]="600" [nzFooter]="nzModalFooterview" nzTitle="查看" (nzOnOk)="handleOK()" (nzOnCancel)="handleCancel('1')">
<nz-modal [(nzVisible)]="isVisibleView" [nzWidth]="600" [nzFooter]="nzModalFooterview" nzTitle="查看" (nzOnOk)="handleOK()" (nzOnCancel)="handleCancel()">
<ng-container *nzModalContent>
<sv-container labelWidth="160" class="apply-sv">
<sv label="身份证号" col="1">{{ infoData1?.enterpriseName }}</sv>
@ -93,8 +93,9 @@
</sv-container>
</ng-container>
<ng-template #nzModalFooterview>
<button nz-button nzType="default" (click)="handleCancel('1')">驳回</button>
<button nz-button nzType="primary" (click)="handleOK()">通过</button>
<button *ngIf="!auditstatus" nz-button nzType="default" (click)="handleCancel()">驳回</button>
<button *ngIf="!auditstatus" nz-button nzType="primary" (click)="handleOK()">通过</button>
<button *ngIf="auditstatus" nz-button nzType="primary" (click)="handleCancel()">取消</button>
</ng-template>
</nz-modal>