service.js 404 B

123456789101112131415161718192021
  1. /**
  2. * 此文件管理项目所有接口
  3. */
  4. import {get, post, put, del} from './network';
  5. /**
  6. * 服务器根域名
  7. * 试玩更多接口看这里
  8. * http://jsonplaceholder.typicode.com/
  9. * @type {string}
  10. */
  11. // https://sqdx.jiaxintech.com
  12. export const API_ROOT = 'https://sqdx.jiaxintech.com';
  13. /**
  14. * 获取图片
  15. */
  16. export const getXczsArr = (id) => post(`${API_ROOT}/wx/course/listCategory`);