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.
|
|
|
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() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|