1234567891011121314151617181920212223242526272829303132 |
- /**
- * 此文件管理项目所有接口
- */
- import {get, post, put, del} from './network';
- // import {
- // getBing
- // } from "../../utils/service.js";
- // getBing({
- // name:'7778880105007',
- // pwd: 'e10adc3949ba59abbe56e057f20f883e',
- // appletsId: 'oqqAL4wZlDm8UYJFjdJljt - BoFvw'
- // })
- // .then(data => {
- // console.log(data, "000000")
- // })
- /**
- * 服务器根域名
- * 试玩更多接口看这里
- * 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`);
|