| 123456789101112131415161718192021222324252627 |
- //我的相关:
- const {
- http
- } = uni.$u
- //任务分类导航
- export const uploadPhotoOrVideo = (params, config = {}) => http.post('/order/course/list', params, config)
- // //系统参数
- // export const getSysParmars = (params, config = {}) => http.post('/order/course/list', params, config)
- //gpt
- export const sendGpt = (params, config = {}) => http.post('/chat/send', params, config)
- //获取微信支付参数
- export const wxPayPamars = (params, config = {}) => http.post('/order/course/config', params, config)
- //页面鉴权
- export const wechatJssdk = (params, config = {}) => http.post('/order/course/config', params, config)
- // 获取微信配置
- export const wxConfigPamars = (params, config = {}) => http.post('/weixin/config', params, config)
|