export const getHospitalsData = () => { const hospitals = [] hospitals.push({ label: '北京朝阳医院', value: '北京朝阳医院' }) hospitals.push({ label: '北京朝阳医院1', value: '北京朝阳医院1' }) hospitals.push({ label: '北京朝阳医院2', value: '北京朝阳医院2' }) return hospitals } export const getPhoneAreasData = () => { return ['中国 +86'] } export const getDeptData = () => { const depts = [] depts.push({ label: '神经外科', value: '神经外科' }) depts.push({ label: '心脏内科', value: '心脏内科' }) return depts }