This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
const http = uni.$u.http
// post请求,获取菜单
export const getDictByKey = (params, config = {}) => http.post('/userapi/getDictByKey', params, config)
export const getAIReply = (params, config = {header: {"Content-Type":"application/x-www-form-urlencoded"}}) => http.post('/aichat/reply', params, config)
export const getChatLog = (params, config = {}) => http.get('/aichat/get_chat_log', {params}, config)