123456789101112131415161718192021 |
- /**
- * 此文件管理项目所有接口
- */
- import {get, post, put, del} from './network';
- /**
- * 服务器根域名
- * 试玩更多接口看这里
- * http://jsonplaceholder.typicode.com/
- * @type {string}
- */
- // https://sqdx.jiaxintech.com
- export const API_ROOT = 'https://sqdx.jiaxintech.com';
- /**
- * 获取图片
- */
- export const getXczsArr = (id) => post(`${API_ROOT}/wx/course/listCategory`);
|