This commit is contained in:
Taric Xin
2022-01-21 14:47:47 +08:00
parent eed0749612
commit 8d296f1dcf
10 changed files with 13 additions and 69 deletions

View File

@ -126,7 +126,7 @@ export class AuthDrawerComponent implements OnInit {
private initST(): STColumn[] {
return [
{ title: '权限名称', index: 'name' },
{ title: '权限名称', index: 'name', width: 120 },
{ title: '权限编码', index: 'permissionsCode' },
{ title: '权限路径', index: 'permissionsUrl' },
{

View File

@ -58,9 +58,9 @@
<th>菜单名称</th>
<th>菜单编号</th>
<th>路由地址</th>
<th nzAlign="center" nzWidth="120px">菜单图标</th>
<th nzWidth="100px">菜单排序</th>
<th nzAlign="center">操作</th>
<th nzAlign="center" nzWidth="100px">菜单图标</th>
<th nzAlign="center" nzWidth="100px">菜单排序</th>
<th nzAlign="center" nzWidth="250px">操作</th>
</tr>
</thead>
<tbody>
@ -74,11 +74,11 @@
</td>
<td>{{ item.keyCode }}</td>
<td>{{ item.link }}</td>
<td nzAlign="center" nzWidth="120px">
<td nzAlign="center" nzWidth="100px">
<i nz-icon [nzType]="item.iconType"></i>
</td>
<td nzWidth="100px">{{ item.sorted }}</td>
<td nzAlign="center">
<td nzAlign="right" nzWidth="100px">{{ item.sorted }}</td>
<td nzAlign="center" nzWidth="250px">
<a (click)="menuAction('查看菜单',item,item.parentId,true)">查看</a>
<nz-divider nzType="vertical"></nz-divider>
<a (click)="menuAction('编辑菜单',item,item.parentId)">编辑</a>

View File

@ -76,7 +76,7 @@ export class MenuManagerComponentsIndexComponent implements OnInit {
});
modal.afterClose.subscribe(res => {
if (res) {
this.loadMemu(this.selectedPlatform.appId);
// this.loadMemu(this.selectedPlatform.appId);
}
});
}