| 1234567891011121314151617 |
- // 分类相关API
- const api = require('../utils/api');
- // 获取分类列表
- function getCategoryList() {
- return api.get('/app/category/list');
- }
- // 获取分类树
- function getCategoryTree() {
- return api.get('/app/category/tree');
- }
- module.exports = {
- getCategoryList,
- getCategoryTree
- };
|