Files
dsProject/dsApp/config/api.js

10 lines
422 B
JavaScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
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)