Commit 70cd9676 authored by wangqinghua's avatar wangqinghua

update

parent 9a2cafc1
......@@ -118,8 +118,8 @@ export class AlarmListComponent implements OnInit {
//查询
searchValue(){
this.obj.startTime = this.datePipe.transform(this.obj.startTime,'yyyy-MM-dd HH:mm:ss');
this.obj.endTime = this.datePipe.transform(this.obj.endTime,'yyyy-MM-dd HH:mm:ss');
this.obj.startTime = this.datePipe.transform(Number(this.obj.startTime),'yyyy-MM-dd HH:mm:ss');
this.obj.endTime = this.datePipe.transform(Number(this.obj.endTime),'yyyy-MM-dd HH:mm:ss');
this.warnList.getList(this.obj);
}
}
......@@ -54,7 +54,6 @@ export class NowAlarmComponent implements OnInit {
isWaring:'yes',
hostid:hostid,
};
console.log(obj);
this.warnList.getList(obj);
}
......
......@@ -22,7 +22,6 @@ import {NetworkDetailComponent} from './overAll/network-check/network-detail/net
import {TopologyImgComponent} from './netTopology/topology-img/topology-img.component';
export const route: Routes = [
{path: '', redirectTo: 'app/main', pathMatch: 'full'},
{
path: 'app', component: AppComponent,
children: [
......
......@@ -67,9 +67,6 @@ export class NeTopologyComponent implements OnInit, AfterViewInit {
//新增拓扑图
addTopo() {
// this.topoType = '添加模式';
// this.message.info('添加模式');
// editor.utils.editTopology();
this.smartTopology.showAddMOodal();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment