车辆接口更新
This commit is contained in:
@ -6,13 +6,26 @@
|
||||
</div>
|
||||
<div class="rightBox">
|
||||
<nz-tabset [nzSize]="'small'">
|
||||
<nz-tab nzTitle="操作权限">
|
||||
<!-- <nz-tab nzTitle="操作权限">
|
||||
<div *ngFor="let item of origin?.buttonInfoList">
|
||||
<label nz-checkbox [(ngModel)]="item.checked" (ngModelChange)="addAuthority(origin, node, item)">{{ item.title
|
||||
}}</label>
|
||||
</div>
|
||||
<nz-empty nzNotFoundImage="simple" *ngIf="origin?.buttonInfoList?.length === 0">
|
||||
</nz-empty>
|
||||
</nz-tab> -->
|
||||
<nz-tab nzTitle="操作权限">
|
||||
<div *ngIf="origin.buttonInfoList && origin.buttonInfoList.length">
|
||||
<label style="width: 100%"
|
||||
nz-checkbox
|
||||
[(ngModel)]="item.checked"
|
||||
*ngFor="let item of origin.buttonInfoList"
|
||||
(ngModelChange)="addAuthority(origin, node, item)"
|
||||
[disabled]="source === 'onlyAuth'"
|
||||
>{{ item.permissionsName }}</label
|
||||
>
|
||||
</div>
|
||||
<nz-empty nzNotFoundImage="simple" *ngIf="origin.buttonInfoList && origin.buttonInfoList.length === 0"> </nz-empty>
|
||||
</nz-tab>
|
||||
<nz-tab nzTitle="数据权限">
|
||||
<div *ngIf="origin.dictList?.length>0" se-container [labelWidth]="100">
|
||||
|
||||
Reference in New Issue
Block a user