diff --git a/smart-app/src/api/support/change-log-api.js b/smart-app/src/api/support/change-log-api.js index 67727d95..9fbe1efa 100644 --- a/smart-app/src/api/support/change-log-api.js +++ b/smart-app/src/api/support/change-log-api.js @@ -14,4 +14,11 @@ export const changeLogApi = { queryPage: (param) => { return postRequest('/support/changeLog/queryPage', param); }, + + /** + * 详情 @author 卓大 + */ + getDetail: (changeLogId) => { + return getRequest(`/support/changeLog/getDetail/${changeLogId}`); + }, }; diff --git a/smart-app/src/pages.json b/smart-app/src/pages.json index 44d5ed04..e1c224f3 100644 --- a/smart-app/src/pages.json +++ b/smart-app/src/pages.json @@ -2,7 +2,8 @@ "easycom": { "autoscan": true, "custom": { - "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue" + "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue", + "^y-(.*)": "@/uni_modules/y-$1/components/y-$1.vue" } }, "pages": [ @@ -69,7 +70,7 @@ "path" : "pages/notice/notice-detail", "style" : { - "navigationBarTitleText" : "通知公告", + "navigationBarTitleText" : "公告内容", "enablePullDownRefresh" : false, "navigationBarBackgroundColor": "#fff" } @@ -92,6 +93,15 @@ "navigationBarBackgroundColor": "#fff" } }, + { + "path" : "pages/support/change-log/change-log-detail", + "style" : + { + "navigationBarTitleText" : "版本更新内容", + "enablePullDownRefresh" : false, + "navigationBarBackgroundColor": "#fff" + } + }, { "path" : "pages/list/list", "style" : diff --git a/smart-app/src/pages/form/components/font-size-select.vue b/smart-app/src/pages/form/components/font-size-select.vue deleted file mode 100644 index f1cb8c01..00000000 --- a/smart-app/src/pages/form/components/font-size-select.vue +++ /dev/null @@ -1,49 +0,0 @@ - - - - - diff --git a/smart-app/src/pages/form/components/interest.vue b/smart-app/src/pages/form/components/interest.vue deleted file mode 100644 index 32b2e70c..00000000 --- a/smart-app/src/pages/form/components/interest.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - - - \ No newline at end of file diff --git a/smart-app/src/pages/form/components/radio-sex.vue b/smart-app/src/pages/form/components/radio-sex.vue deleted file mode 100644 index 913a950f..00000000 --- a/smart-app/src/pages/form/components/radio-sex.vue +++ /dev/null @@ -1,60 +0,0 @@ - - - - - diff --git a/smart-app/src/pages/form/form.vue b/smart-app/src/pages/form/form.vue index f22d9f0e..816d1d54 100644 --- a/smart-app/src/pages/form/form.vue +++ b/smart-app/src/pages/form/form.vue @@ -1,199 +1,94 @@