吉光研途前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
682 B

// 案例相关接口
const api = {
/**
* 获取服务分类列表
*/
queryCategoryServiceList: {
url: '/config/queryCategoryServiceList',
method: 'GET',
},
/**
* 获取专业分类列表
*/
queryCategoryMajorList: {
url: '/config/queryCategoryMajorList',
method: 'GET',
},
/**
* 获取阶段分类列表
*/
queryCategoryPeriodList: {
url: '/config/queryCategoryPeriodList',
method: 'GET',
},
/**
* 获取案例文章列表
*/
queryAriticleList: {
url: '/index/queryAriticleList',
method: 'GET',
},
/**
* 获取案例文章详情
*/
queryAriticleById: {
url: '/index/queryAriticleById',
method: 'GET',
},
}
export default api