9 changed files with 72 additions and 9 deletions
@ -0,0 +1,9 @@ |
|||||||
|
<div class="box"> |
||||||
|
<nz-page-header class="site-page-header" (nzBack)="goback()" nzBackIcon nzSubtitle="返回上一页"></nz-page-header> |
||||||
|
<div class="content"> |
||||||
|
<nz-tabset> |
||||||
|
<nz-tab nzTitle="配置文件 1">Content of Tab Pane 1</nz-tab> |
||||||
|
<nz-tab nzTitle="配置文件 2">Content of Tab Pane 2</nz-tab> |
||||||
|
</nz-tabset> |
||||||
|
</div> |
||||||
|
</div> |
@ -0,0 +1,16 @@ |
|||||||
|
.box { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
background: #fff; |
||||||
|
font-size: 15px; |
||||||
|
color: black; |
||||||
|
box-sizing: border-box; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
overflow-y: auto; |
||||||
|
} |
||||||
|
.content{ |
||||||
|
flex: 1; |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 0 12px; |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
import { Component, OnInit } from '@angular/core'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-config-form', |
||||||
|
templateUrl: './config-form.component.html', |
||||||
|
styleUrls: ['./config-form.component.scss'] |
||||||
|
}) |
||||||
|
export class ConfigFormComponent implements OnInit { |
||||||
|
|
||||||
|
constructor() { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
} |
||||||
|
goback() { |
||||||
|
history.go(-1) |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue