/** * 接口列表文件 */ export default { app: { // 获取openId getOpenId: { url: '/business/app/login', auth: false, method: 'post', }, // 获取手机号 getPhone: { url: '/', auth: false, method: 'post', }, // 获取用户信息 getUserInfo: { url: '/', auth: false, method: 'get', }, }, signs: { // 获取已绑定福位 getOpenidCabinetPosition: { url: '/business/app/getOpenidCabinetPosition', auth: true, method: 'POST', }, // 获取预约时间选择 getOpenidVisitDateTime: { url: '/business/app/getOpenidVisitDateTime', auth: true, method: 'POST', }, // 添加预约 addOpenidVisit: { url: '/business/app/addOpenidVisit', auth: true, method: 'POST', }, // 预约记录 getOpenidVisitList: { url: '/business/app/getOpenidVisitList', auth: true, method: 'POST', }, // 未绑定阁位区域 getCabinetArea: { url: '/business/app/getCabinetArea', auth: true, method: 'POST', }, // 未绑定阁位 getCabinetPosition: { url: '/business/app/getCabinetPosition', auth: true, method: 'POST', }, // 手机发送验证码 sendCode: { url: '/business/app/sendCode', auth: true, method: 'POST', }, // 验证码绑定 openidBinding: { url: '/business/app/openidBinding', auth: true, method: 'POST', }, } };