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

18 lines
610 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']
2023-12-19 09:47:27 +08:00
}
export const getDeptData = () => {
const depts = []
depts.push({ label: '神经外科', value: '神经外科' })
depts.push({ label: '心脏内科', value: '心脏内科' })
return depts
2023-12-15 18:08:45 +08:00
}