固定资产项目前端文件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

1 year ago
<div
class="menu bg-white shadow fixed left-0 top-12 bottom-0 z-20 w-48 flex-shrink-0 py-3 overflow-y-auto overflow-x-hidden"
>
<ul nz-menu nzMode="inline">
1 year ago
<li
1 year ago
*appPermission="['system-user:view']"
nz-menu-item
[nzPaddingLeft]="12"
[routerLink]="['/system/user']"
nzMatchRouter
>
组织架构
</li>
<li
*appPermission="['system-role:view']"
nz-menu-item
[nzPaddingLeft]="12"
[routerLink]="['/system/role']"
nzMatchRouter
>
角色管理
</li>
1 year ago
<li
*appPermission="['system-license:view']"
nz-menu-item
[nzPaddingLeft]="12"
[routerLink]="['/system/license']"
nzMatchRouter
>
授权证书
</li>
1 year ago
<li
*appPermission="['system-flow-form:view']"
1 year ago
nzMatchRouter
[nzPaddingLeft]="12"
nz-submenu
nzTitle="流程管理"
[nzOpen]="openedSubmenu.startsWith('/system/flow/')"
>
<ul>
<li nz-menu-item [nzPaddingLeft]="24" [routerLink]="['/system/flow/form']" nzMatchRouter>表单定义</li>
</ul>
</li>
1 year ago
</ul>
</div>
<div class="pl-48 overflow-hidden">
<router-outlet></router-outlet>
</div>