Files
airport-chengdu-web/src/app/pages/system-management/personal-settings/flight-agency/flight-agency.component.ts
T
2018-11-15 18:29:55 +08:00

24 lines
368 B
TypeScript

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