edit
This commit is contained in:
@ -9,32 +9,19 @@
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ActivatedRoute } from '@angular/router';
|
||||
import { NzMessageService } from 'ng-zorro-antd/message';
|
||||
import {InterfaceDockingService} from '../../services/interface-docking.service';
|
||||
@Component({
|
||||
selector: 'app-interface-docking-set',
|
||||
templateUrl: './set.component.html',
|
||||
styleUrls: ['./set.component.less']
|
||||
})
|
||||
export class interfaceDockingSetComponent implements OnInit {
|
||||
|
||||
constructor(
|
||||
private route: ActivatedRoute,
|
||||
private msgSrv: NzMessageService,
|
||||
private service: InterfaceDockingService,
|
||||
) {
|
||||
|
||||
}
|
||||
constructor() {}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.initData()
|
||||
}
|
||||
initData() {
|
||||
|
||||
this.initData();
|
||||
}
|
||||
initData() {}
|
||||
goBack() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user