edit
This commit is contained in:
@ -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' },
|
||||
{
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user