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.
26 lines
1004 B
26 lines
1004 B
|
|
<mat-sidenav-container class="example-container" autosize [class.myapp-dark-theme]="darktheme"> |
|
<mat-sidenav #drawer class="example-sidenav" mode="side" opened="true" color="primary" style="overflow-x: hidden;"> |
|
<div class="biglogobox"> |
|
<img src="../../assets/images/logo.png" alt=""> |
|
</div> |
|
<div class="navbox"> |
|
<ul> |
|
<li>启动培训系统</li> |
|
</ul> |
|
<div class="addBankBtn" (click)="addDataBank()"> |
|
<mat-icon>note_add</mat-icon> <span>新增资料库</span> |
|
</div> |
|
</div> |
|
</mat-sidenav> |
|
|
|
<!-- <button type="button" mat-button (click)="drawer.toggle()" class="shownav"> |
|
<mat-icon>menu</mat-icon> |
|
</button> --> |
|
|
|
<div class="example-sidenav-content"> |
|
<app-tabbar (toggleDarkTheme)="switchTheme($event)" (defaulttheme)="defaulttheme()" (redtheme)="redtheme()"></app-tabbar> |
|
<router-outlet></router-outlet> |
|
</div> |
|
|
|
</mat-sidenav-container>
|
|
|