| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /**
- * 接口列表文件
- */
- 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: {
- // 获取已绑定福位
- getOpenidBlessingPosition: {
- url: '/business/app/getOpenidBlessingPosition',
- 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',
- },
- // 未绑定阁位区域
- getBlessingArea: {
- url: '/business/app/getBlessingArea',
- auth: true,
- method: 'POST',
- },
- // 未绑定阁位
- getBlessingPosition: {
- url: '/business/app/getBlessingPosition',
- auth: true,
- method: 'POST',
- },
- // 手机发送验证码
- sendCode: {
- url: '/business/app/sendCode',
- auth: true,
- method: 'POST',
- },
- // 验证码绑定
- openidBinding: {
- url: '/business/app/openidBinding',
- auth: true,
- method: 'POST',
- },
- }
- };
|