|
|
- // 首页相关接口
-
- 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
|