From 341d94461b8d3ddefb85ba9b5b8a7bbf782b2cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Thu, 30 Nov 2023 11:30:06 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E5=85=AC=E7=94=A8=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 51 +++++----- src/App.vue | 4 +- src/assets/less/common.less | 35 ++++++- src/common/lang/zh-cn.js | 8 +- src/components/ProcessCommonLayout.vue | 97 +++++++++++++++++++ src/router/index.js | 11 ++- .../StandardEntryOrChangeProcess.vue | 26 +++++ vant.config.js | 2 +- 8 files changed, 205 insertions(+), 29 deletions(-) create mode 100644 src/components/ProcessCommonLayout.vue create mode 100644 src/views/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue diff --git a/public/index.html b/public/index.html index fc89978..253bfb2 100644 --- a/public/index.html +++ b/public/index.html @@ -1,26 +1,31 @@ - - - - - - <%= htmlWebpackPlugin.options.title %> - - - - - -
- - + + + + + + <%= htmlWebpackPlugin.options.title %> + + + + + +
+ + diff --git a/src/App.vue b/src/App.vue index 2777abf..c7e4c6c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -88,7 +88,7 @@ export default { diff --git a/src/router/index.js b/src/router/index.js index 260ab24..90c0262 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -27,7 +27,16 @@ const routes = [ hasBack: false } }, - + // 标准法规入库/变更流程 + { + path: '/standardEntryOrChangeProcess', + name: 'StandardEntryOrChangeProcess', + meta: { + hasNavBar: true, + hasBack: true + }, + component: () => import('@/views/standardEntryOrChangeProcess/StandardEntryOrChangeProcess') + }, { // 流程中节点不支持的页面 path: '/noMobile', name: 'NoMobile', diff --git a/src/views/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue new file mode 100644 index 0000000..18e02f2 --- /dev/null +++ b/src/views/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -0,0 +1,26 @@ + + + + + diff --git a/vant.config.js b/vant.config.js index f974eaf..c76778c 100644 --- a/vant.config.js +++ b/vant.config.js @@ -9,6 +9,6 @@ module.exports = { 'nav-bar-icon-color': white, 'nav-bar-text-color': white, 'nav-bar-title-text-color': white, - 'nav-bar-background-color': primaryColor, + 'nav-bar-background-color': primaryColor } }