This commit is contained in:
Taric Xin
2022-02-22 13:43:43 +08:00
parent 8a623115aa
commit 2edc16eb08
4 changed files with 11 additions and 8 deletions

View File

@ -88,7 +88,7 @@
<ng-container *ngSwitchCase="9">
<nz-upload [nzAction]="service.$api_upload_url" [nzName]="'multipartFile'"
[nzHeaders]="{ authorization: 'authorization-text' }"
[(nzFileList)]="item.itemValue">
[(nzFileList)]="item.itemValue" style="margin-left: 26px;">
<button nz-button>
<i nz-icon nzType="upload"></i>
上传文件
@ -97,7 +97,7 @@
</ng-container>
<!-- 开关选项 -->
<ng-container *ngSwitchCase="10">
<nz-switch [(ngModel)]="item.itemValue"></nz-switch>
<nz-switch [ngModel]="item.itemValue" style="margin-left: 26px;"></nz-switch>
</ng-container>
<!-- 开关选项 -->
<ng-container *ngSwitchCase="999">

View File

@ -75,6 +75,8 @@ export class DynamicSettingModalComponent implements OnInit {
this.configList = this.formatItems(this.selectedTab.items);
const hiddenType = this.configList.find((item: any) => item.itemType === 7 || item.itemType === 999);
this.labelWidth = hiddenType ? 0 : 200;
console.log(this.configList);
}
});
}