Browse Source

chore: update systemEnum

main
刘凯 1 year ago
parent
commit
b8a890dfff
  1. 95
      src/enums/systemEnum.ts

95
src/enums/systemEnum.ts

@ -3,6 +3,9 @@ export enum StationStatus {
Using = '1',
}
/**
*
*/
export const StationStatusOptions = [
{
value: StationStatus.Closed,
@ -20,6 +23,9 @@ export enum StationEnvironments {
Carport = '2',
}
/**
*
*/
export const StationEnvironmentOptions = [
{
value: StationEnvironments.OpenAir,
@ -34,3 +40,92 @@ export const StationEnvironmentOptions = [
label: '车棚',
},
]
/**
*
*/
export const BuildingLotOptions = [
{
value: '1',
label: '居民区',
},
{
value: '2',
label: '公共机构',
},
{
value: '3',
label: '企事业单位',
},
{
value: '4',
label: '写字楼',
},
{
value: '5',
label: '工业园区',
},
{
value: '6',
label: '交通枢纽',
},
{
value: '7',
label: '大型文体设施',
},
{
value: '8',
label: '城市绿地',
},
{
value: '9',
label: '大型建筑配建停车场',
},
{
value: '10',
label: '路边停车位',
},
{
value: '11',
label: '城际高速服务区',
},
{
value: '255',
label: '其他',
},
]
/**
*
*/
export const OperateWayOptions = [
{
value: 'self',
label: '自营',
},
{
value: 'other',
label: '代运营',
},
]
export enum ParkingChargeWay {
Free = '0',
LimitedFree = '1',
Changing = '2',
}
export const ParkingChargeWayOptions = [
{
value: ParkingChargeWay.Free,
label: '免费停车',
},
{
value: ParkingChargeWay.LimitedFree,
label: '限时免费',
},
{
value: ParkingChargeWay.Changing,
label: '收费停车',
},
]

Loading…
Cancel
Save