rax-medical/src/static-data/core.ts

11 lines
404 B
TypeScript
Raw Normal View History

2023-12-15 18:08:45 +08:00
export const getHospitalsData = () => {
const hospitals = []
hospitals.push({ label: '北京朝阳医院', value: '北京朝阳医院' })
hospitals.push({ label: '北京朝阳医院1', value: '北京朝阳医院1' })
hospitals.push({ label: '北京朝阳医院2', value: '北京朝阳医院2' })
return hospitals
2023-12-14 18:29:40 +08:00
}
2023-12-15 18:08:45 +08:00
export const getPhoneAreasData = () => {
return ['中国 +86']
}