@ -0,0 +1,12 @@
|
||||
<div class="childContent"> |
||||
|
||||
<div class="childCenter"> |
||||
|
||||
</div> |
||||
|
||||
<div class="childBottom" *ngIf="beforeFence === 0"> |
||||
<button (click)="editInfo()"><i nz-icon nzType="edit" nzTheme="outline"></i>编辑信息</button> |
||||
<button (click)="deriveExcel()"><i nz-icon nzType="file-excel" nzTheme="outline"></i>导出Excel</button> |
||||
</div> |
||||
|
||||
</div> |
@ -0,0 +1,34 @@
|
||||
.childContent{ |
||||
width: 100%; |
||||
height: 100%; |
||||
overflow: hidden; |
||||
display: flex; |
||||
flex-direction: column; |
||||
font-family: Source Han Sans CN; |
||||
color: #fff; |
||||
.childCenter{ |
||||
flex: 1; |
||||
overflow-x: hidden; |
||||
overflow-y: auto; |
||||
} |
||||
.childBottom{ |
||||
width: 100%; |
||||
height: 50px; |
||||
line-height: 50px; |
||||
text-align: center; |
||||
background: linear-gradient(360deg, #000D21 0%, #003B6E 100%); |
||||
box-shadow: 0px -2px 6px #36A2FF; |
||||
button{ |
||||
width: 35%; |
||||
height: 32px; |
||||
line-height: 32px; |
||||
padding: 0; |
||||
margin: 0 10px; |
||||
color: #91CCFF; |
||||
background: rgba(0, 129, 255, 0.61); |
||||
border: 1px solid #36A2FF; |
||||
cursor: pointer; |
||||
.anticon{ margin-right: 3px; } //字体图标 |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,40 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
import { PlanComponent } from '../plan/plan.component'; |
||||
|
||||
@Component({ |
||||
selector: 'app-left-domain', |
||||
templateUrl: './left-domain.component.html', |
||||
styleUrls: ['./left-domain.component.scss'] |
||||
}) |
||||
export class LeftDomainComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
this.initComponent() |
||||
} |
||||
|
||||
beforeFence: number; //当前选中功能栏
|
||||
|
||||
//初始化组件
|
||||
initComponent(type?: number) { |
||||
if (type != undefined && type != null) { |
||||
this.beforeFence = type |
||||
} else { |
||||
this.beforeFence = PlanComponent.instance.selectFence |
||||
} |
||||
} |
||||
|
||||
//编辑信息
|
||||
editInfo() { |
||||
|
||||
} |
||||
|
||||
//导出Excel
|
||||
deriveExcel() { |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
} |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.5 KiB |