From ac2253e5521fd3533e5f43551411755042ce3c1a Mon Sep 17 00:00:00 2001 From: zhengjie <201507802@qq.com> Date: Sat, 29 Jun 2019 13:26:05 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6=E4=B8=AD?= =?UTF-8?q?=E5=8A=A0=E5=85=A5=E5=BA=95=E9=83=A8=E4=BF=A1=E6=81=AF=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/index.js | 17 ++++++++++++++++- src/layout/components/AppMain.vue | 22 +++++++++++++++------- src/store/modules/settings.js | 5 ++++- src/styles/index.scss | 29 +++++++++++++++++++++++++++++ src/views/login.vue | 5 +++++ 5 files changed, 69 insertions(+), 9 deletions(-) diff --git a/src/config/index.js b/src/config/index.js index 21377b2..556a8a9 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -46,5 +46,20 @@ export default { /** * 是否显示设置的悬浮按钮 */ - settingBtn: true + settingBtn: true, + + /** + * 是否显示设置的底部信息 + */ + showFooter: true, + + /** + * 底部文字,支持html语法 + */ + footerTxt: '© 2019 Zheng Jie Apache License 2.0', + + /** + * 备案号 + */ + caseNumber: '浙ICP备18005431号-3' } diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue index 52e6da5..8f9b6b8 100644 --- a/src/layout/components/AppMain.vue +++ b/src/layout/components/AppMain.vue @@ -1,11 +1,18 @@