租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
559 B

6 months ago
6 months ago
  1. const { http } = uni.$uv
  2. // 获取菜单
  3. console.info(`http`,http)
  4. export const fetchMenu = (params, config = {}) => http.get('/applet/index/getRecommendDocs', params, config)
  5. /**
  6. * 登录的接口
  7. */
  8. // 微信登录接口
  9. export const wxLogin = (params) => http.get('/api/login/login', {params:params})
  10. // 微信登录接口
  11. export const appletLogin = (params) => http.get('/houserent-admin/login_common/appletLogin', {params:params})
  12. // 配置
  13. export const getConfig = (params) => http.get('/houserent-admin/config_common/getConfig', {params:params})