9 lines
514 B
JavaScript
9 lines
514 B
JavaScript
// post请求,获取菜单
|
||
export const post = (url,params, config = {}) => uni.$u.http.post(url, params, config)
|
||
|
||
// get请求,获取菜单,注意:get请求的配置等,都在第二个参数中,详见前面解释
|
||
export const get = (url,data,toast,responseType = '') => uni.$u.http.get(url, {params: data,custom:{toast:toast||false},responseType:responseType})
|
||
|
||
// export const baseUrl = 'http://103.39.230.169:8085' // APP测试
|
||
export const baseUrl = 'http://bmsc.baimajingxuan.com'; // APP线上
|