api.js 327 Bytes 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 const http = uni.$u.http // post请求,获取菜单 export const postMenu = (params) => http.post('/ebapi/public_api/index', params) // get请求,获取菜单,注意:get请求的配置等,都在第二个参数中,详见前面解释 export const getMenu = (data) => http.get('/ebapi/public_api/index', data)