You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
585 B
36 lines
585 B
export enum StationStatus { |
|
Closed = '0', |
|
Using = '1', |
|
} |
|
|
|
export const StationStatusOptions = [ |
|
{ |
|
value: StationStatus.Closed, |
|
label: '关闭中', |
|
}, |
|
{ |
|
value: StationStatus.Using, |
|
label: '使用中', |
|
}, |
|
] |
|
|
|
export enum StationEnvironments { |
|
OpenAir = '0', |
|
Underground = '1', |
|
Carport = '2', |
|
} |
|
|
|
export const StationEnvironmentOptions = [ |
|
{ |
|
value: StationEnvironments.OpenAir, |
|
label: '露天', |
|
}, |
|
{ |
|
value: StationEnvironments.Underground, |
|
label: '地下', |
|
}, |
|
{ |
|
value: StationEnvironments.Carport, |
|
label: '车棚', |
|
}, |
|
]
|
|
|