个人设置开发

This commit is contained in:
liweijin
2018-11-15 18:29:55 +08:00
parent 58eff4ad23
commit ae65e0ae65
17 changed files with 343 additions and 84 deletions
@@ -0,0 +1,23 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-flight-agency',
templateUrl: './flight-agency.component.html',
styleUrls: ['./flight-agency.component.scss']
})
export class FlightAgencyComponent implements OnInit {
public radioValue='1';
constructor() { }
ngOnInit() {
}
//保存
save(){
}
//取消
cancel(){
}
}