去除导航

This commit is contained in:
liweijin
2018-12-21 18:28:32 +08:00
parent b3d987f75c
commit 6fe99c9d80
18 changed files with 94 additions and 96 deletions
@@ -1,15 +1,4 @@
<div class="system-main-container">
<div class="navigation">
<nz-breadcrumb>
<nz-breadcrumb-item>
<a [routerLink]="['../']">用户管理</a>
</nz-breadcrumb-item>
<nz-breadcrumb-item>
<span *ngIf='modifyType==1'>新增用户</span>
<span *ngIf='modifyType==2'>修改用户</span>
</nz-breadcrumb-item>
</nz-breadcrumb>
</div>
<div class="user-modify-box card" id="main-container">
<app-request-status *ngIf="modifyType==2" [statusParams]='statusParamsDetail'></app-request-status>
<nz-skeleton [nzActive]="true" [nzParagraph]="{ rows: 16 }" *ngIf='modifyType==2&&statusParamsDetail.status==1'></nz-skeleton>
@@ -1,6 +1,8 @@
.system-main-container{
overflow-y:auto;
}
.user-modify-box{
position: relative;
overflow-y:scroll;
.user-footer{
text-align: center;
margin-top: -20px;
@@ -1,14 +1,4 @@
<div class="system-main-container">
<div class="navigation">
<nz-breadcrumb>
<nz-breadcrumb-item>
用户管理
</nz-breadcrumb-item>
<nz-breadcrumb-item>
列表
</nz-breadcrumb-item>
</nz-breadcrumb>
</div>
<div class="user-manage">
<div class="tree-box" id="tree-box">
<app-request-status [statusParams]='statusParamsTree'></app-request-status>
@@ -1,6 +1,5 @@
@import "../../main.scss";
.system-main-container{
padding-top: 10px;
.user-manage{
.system-main-content{
overflow-y:scroll;
@@ -44,11 +44,11 @@ export class UserManagementComponent implements OnInit {
ngOnInit() {
// 页面监听 动态改变表单高度
$('#tree-box').css('height',(document.documentElement.clientHeight-106+'px'));
$('#main-box').css('height',(document.documentElement.clientHeight-106+'px'));
$('#tree-box').css('height',(document.documentElement.clientHeight-126+'px'));
$('#main-box').css('height',(document.documentElement.clientHeight-126+'px'));
$(window).resize(function(){
$('#tree-box').css('height',(document.documentElement.clientHeight-106+'px'));
$('#main-box').css('height',(document.documentElement.clientHeight-106+'px'));
$('#tree-box').css('height',(document.documentElement.clientHeight-126+'px'));
$('#main-box').css('height',(document.documentElement.clientHeight-126+'px'));
})
this.initTree();
this.queryTable();