24 lines
368 B
TypeScript
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(){
|
|
|
|
}
|
|
}
|