租房小程序前端代码
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

const { http } = uni.$uv
// 获取菜单
console.info(`http`,http)
export const fetchMenu = (params, config = {}) => http.get('/applet/index/getRecommendDocs', params, config)
/**
* 登录的接口
*/
// 微信登录接口
export const wxLogin = (params) => http.get('/api/login/login', {params:params})
// 微信登录接口
export const appletLogin = (params) => http.get('/houserent-admin/login_common/appletLogin', {params:params})
// 配置
export const getConfig = (params) => http.get('/houserent-admin/config_common/getConfig', {params:params})