diff --git a/api/model/serve.js b/api/model/serve.js index 08a7451..c060d99 100644 --- a/api/model/serve.js +++ b/api/model/serve.js @@ -15,6 +15,27 @@ const api = { 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 \ No newline at end of file diff --git a/common.scss b/common.scss index 853439d..bf93253 100644 --- a/common.scss +++ b/common.scss @@ -42,7 +42,7 @@ .page__view { width: 100vw; min-height: 100vh; - background-color: $uni-bg-color; + background-color: #FAFBFC; position: relative; font-family: PingFang SC; font-weight: 400; diff --git a/pages.json b/pages.json index e1a5ea3..bddf8b2 100644 --- a/pages.json +++ b/pages.json @@ -44,8 +44,14 @@ "path": "case/index" }, { "path": "case/poster" + }, { + "path": "serve/category" + }, { + "path": "serve/search" }, { "path": "serve/index" + }, { + "path": "center/serve" } ] }], diff --git a/pages/index/case.vue b/pages/index/case.vue index b7fe436..9b82d72 100644 --- a/pages/index/case.vue +++ b/pages/index/case.vue @@ -1,57 +1,46 @@