固定资产项目前端文件
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.

24 lines
741 B

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">
<li nz-menu-item [nzPaddingLeft]="12" [routerLink]="['/system/user']" nzMatchRouter>组织架构</li>
<li nz-menu-item [nzPaddingLeft]="12" [routerLink]="['/system/role']" nzMatchRouter>角色管理</li>
1 year ago
<li
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>