12345678 |
- const { http } = uni.$u
- // 获取菜单
- export const fetchMenu = (params, config = {}) => http.post(
- '/ebapi/public_api/index', params, config);
- export const fetchContentInfo = (params) => http.get('/cp/contentInfo/list',
- { params });
- export const fetchContentDetail = (id) => http.get(`/cp/contentInfo/${id}`);
|