This commit is contained in:
Taric Xin
2022-04-13 14:11:07 +08:00
parent b97e27a2f4
commit e8172b12b1
2 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,7 @@
(ngModelChange)="invoiceST.setRow(index, { vatname: $event })" style="width: 100%">
<nz-option [nzValue]="item.value" [nzLabel]="item.label" *ngFor="let item of services"></nz-option>
</nz-select>
<ng-container *ngIf="!isEdit">{{ item.vatname }}</ng-container>
<ng-container *ngIf="!isEdit">{{ item.vatnameLabel || item.vatname }}</ng-container>
</ng-template>
<ng-template st-row="vatmodel" let-item let-index="index">
<input *ngIf="isEdit" nz-input [ngModel]="item.vatmodel"

View File

@ -304,6 +304,7 @@ export class UserCenterComponentsDriverComponent implements OnInit {
'-1': { text: '未提交', color: 'default' },
1: { text: '已提交', color: 'processing' },
2: { text: '已通过', color: 'success' },
3: { text: '已过期', color: 'error' },
// 10: { text: '待审核', color: 'default' },
// 20: { text: '审核通过', color: 'success' },
// 30: { text: '驳回', color: 'warning' },