common.js 328 B

123456789101112131415
  1. import http from "@/utils/http.js";
  2. // 获取客服
  3. export const getKefu = () => {
  4. return http.get('/api/wxapp/getkefu');
  5. }
  6. export const getConfigInfo = () => {
  7. return http.get('/api/wxapp/config');
  8. }
  9. // 染色接口
  10. export const userRanse = ranse_id => {
  11. return http.post('/api/promotion/ranse',{ranse_id:ranse_id});
  12. }