吉光研途前端代码仓库
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
751 B

// 首页相关接口
const api = {
/**
* 查询概述说明列表
*/
querySummaryList: {
url: '/config/querySummaryList',
method: 'GET',
},
/**
* 查询概述说明详情
*/
querySummaryByParamCode: {
url: '/config/querySummaryByParamCode',
method: 'GET',
},
/**
* 系统配置-获取服务模块分类列表
*/
queryCategoryServiceModuleList: {
url: '/config/queryCategoryServiceModuleList',
method: 'GET',
},
/**
* 首页-获取服务模块文章列表
*/
queryServiceArticleList: {
url: '/index/queryServiceArticleList',
method: 'GET',
},
/**
* 首页-获取服务模块文章详情
*/
queryServiceArticleById: {
url: '/index/queryServiceArticleById',
method: 'GET',
},
}
export default api