From bfe7e31e6c25f743a6c5ec502f55376c0423eb89 Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Fri, 15 Jun 2018 23:44:11 +0800 Subject: [PATCH 1/5] no message Former-commit-id: d64a28fd5f425ffe2741b8b9313c0f6988672c46 [formerly d64a28fd5f425ffe2741b8b9313c0f6988672c46 [formerly d64a28fd5f425ffe2741b8b9313c0f6988672c46 [formerly d64a28fd5f425ffe2741b8b9313c0f6988672c46 [formerly bc909a72640cfa8ddff5240c24350ee18e5c1d90 [formerly c6f10ba16b1a545c889c356f95619d00e53b32df]]]]] Former-commit-id: 65ab19c2747fe540c173a65378f16afcf5e6bb45 Former-commit-id: 3e8314f91b67f7585b8b578f42dc115cc03b1cfa Former-commit-id: 73202adf08a8ce75fba235cb5eb7c8b424f7b788 [formerly 8c9b83cb3a222bc5e837b5d258f808c664f3e1bb] Former-commit-id: 1ec7929653e71f0a262ca56b220ce45d48d51bdb Former-commit-id: 90d00934deb6f552872e588c14c6deb2f563f7bf Former-commit-id: d1b93038a953762abd8771e969b6e7091c902217 Former-commit-id: 9a01de16f881aadd1ba00a0623b5180474a24349 Former-commit-id: 98ac1d48432626ed1bc895c01c1e4e7b13d90d73 --- docs/zh/guide/change-log.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/zh/guide/change-log.md b/docs/zh/guide/change-log.md index 763b03aa..fdef1234 100644 --- a/docs/zh/guide/change-log.md +++ b/docs/zh/guide/change-log.md @@ -14,7 +14,7 @@ * [ 修改 ] 内置组件名称统一改为 `d2-` 前缀,统一使用横线连接 (kebab-case) 风格 * [ 修改 ] 顶栏 logo 阴影删除 * [ 新增 ] 主题系统 -* [ 新增 ] 三个主题,分别为 `d2admin 经典`,`简约线条`,`流星` +* [ 新增 ] 三个主题,分别为 d2admin 经典,简约线条,流星 * [ 修改 ] `d2-markdown` 组件 `md` 参数改名为 `source` * [ 修改 ] 删除了 `d2-markdown` 组件中图片的白色背景 * [ 修改 ] 删除 `timeago` 插件,更换为更强大的 `dayjs` @@ -23,6 +23,7 @@ * [ 新增 ] [vue-bigdata-table](https://github.com/lison16/vue-bigdata-table)组件 * [ 修复 ] 侧边栏内容超过一屏后显示错误 * [ 新增 ] 自定义滚动条演示页面 +* [ 新增 ] 流星主题新增背景图片上层的半透明遮罩 ## v1.0.0 From 1ac58386ef0db17ae22c494b9fd39d4727be8703 Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Sat, 16 Jun 2018 19:03:26 +0800 Subject: [PATCH 2/5] no message Former-commit-id: 2f1f4e577c731838c71141878767b0ec80d6a26f [formerly 2f1f4e577c731838c71141878767b0ec80d6a26f [formerly 2f1f4e577c731838c71141878767b0ec80d6a26f [formerly 2f1f4e577c731838c71141878767b0ec80d6a26f [formerly 4ef8390289f09bec3712dc1fb2ed05dbf43b83a0 [formerly 4f086b91b41adc9abb538fe9c189ee942be6810e]]]]] Former-commit-id: a595fdcb2437a8b78a7ad52df807fdb992c8c614 Former-commit-id: bdc244885d9bc482e4f74048068f775de0189333 Former-commit-id: 30cecf8d5431187c97f5cb5c120a0f7dccdf3cbc [formerly e01222e858150cb90a2f37568cb056cbc3e3d07e] Former-commit-id: 43ed50877e76110dd47e087fc6b43ff5cbb8fa10 Former-commit-id: 4756d0faa3168d7137fc61a39d77936ff5e507f3 Former-commit-id: 6b3021310a383d2066e7a76a524dcb933cab7243 Former-commit-id: 2595f1ec23177a4ddf0b54c9833e9cd0edbaf530 Former-commit-id: f41970d94527eba419340b07c7c3f7856b08b8a3 --- docs/zh/guide/change-log.md | 1 + src/store/modules/theme.js | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/zh/guide/change-log.md b/docs/zh/guide/change-log.md index fdef1234..766174dc 100644 --- a/docs/zh/guide/change-log.md +++ b/docs/zh/guide/change-log.md @@ -24,6 +24,7 @@ * [ 修复 ] 侧边栏内容超过一屏后显示错误 * [ 新增 ] 自定义滚动条演示页面 * [ 新增 ] 流星主题新增背景图片上层的半透明遮罩 +* [ 修复 ] 主题设置失效bug ## v1.0.0 diff --git a/src/store/modules/theme.js b/src/store/modules/theme.js index 34fbb8e4..2c34a902 100644 --- a/src/store/modules/theme.js +++ b/src/store/modules/theme.js @@ -45,7 +45,9 @@ export default { // 设置 store state.name = name // 设置 Cookie - Cookies.set('themeName', name) + Cookies.set('themeName', name, { + expires: 365 + }) // 激活主题 this.commit('activeTheme') }, From a837173b5f2c7bb24e50724f69aa84c442814244 Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Sat, 16 Jun 2018 19:12:54 +0800 Subject: [PATCH 3/5] no message Former-commit-id: c63c2ac8dcb03662c2c0b97b584677e5055c1f1f [formerly c63c2ac8dcb03662c2c0b97b584677e5055c1f1f [formerly c63c2ac8dcb03662c2c0b97b584677e5055c1f1f [formerly c63c2ac8dcb03662c2c0b97b584677e5055c1f1f [formerly 7b85cae640d5473be6bbea36517a2c727196abfb [formerly 4ca838ff94ca840156ebc566d010f279a74e47d7]]]]] Former-commit-id: 4db7e25bea459dfe427e5c75f1829080e3e10847 Former-commit-id: a534dade6b8ff18fd0091657479d8ec244c58cf0 Former-commit-id: c08a6ff2ae3afbf97c0e871866c2e2f3b14df55e [formerly 7d892bc20c931e40767486cb656d54fb02fb3a50] Former-commit-id: 223bcfc802ce0b183a5f659cce24977048b6b17a Former-commit-id: e0bdb76f035f4eb39e3158db3ecbd0f944d62c6a Former-commit-id: 1bbd88a04d71050e6d7e8702e07aae929676b22d Former-commit-id: ff7b5996a8457750f5b22f0a0999fcc409a15b0e Former-commit-id: 9772717b40064251ebd53d33444a60cc9db632a5 --- src/router/index.js | 100 ++++++++++++++++++++++---------------------- 1 file changed, 51 insertions(+), 49 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 5f0be777..dec20b21 100755 --- a/src/router/index.js +++ b/src/router/index.js @@ -2,6 +2,8 @@ import Vue from 'vue' import VueRouter from 'vue-router' import Cookies from 'js-cookie' +const meta = { requiresAuth: true } + Vue.use(VueRouter) const routes = [ @@ -14,7 +16,7 @@ const routes = [ { path: 'index', name: 'index', - meta: { requiresAuth: true }, + meta, component: () => import('@/pages/core/index/index.vue') } ] @@ -22,81 +24,81 @@ const routes = [ { path: '/demo/components', name: 'demo-components', - meta: { requiresAuth: true }, + meta, redirect: { name: 'demo-components-index' }, component: () => import('@/components/core/d2-layout-main/index.vue'), children: (pre => [ - { path: 'bigdata-table', name: `${pre}bigdata-table`, component: () => import('@/pages/demo/components/bigdata-table/index.vue') }, - { path: 'container/full', name: `${pre}container-full`, component: () => import('@/pages/demo/components/container/full.vue') }, - { path: 'container/ghost', name: `${pre}container-ghost`, component: () => import('@/pages/demo/components/container/ghost.vue') }, - { path: 'container/card', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue') }, - { path: 'countup', name: `${pre}countup`, component: () => import('@/pages/demo/components/countup/index.vue') }, - { path: 'editor-quill', name: `${pre}editor-quill`, component: () => import('@/pages/demo/components/editor-quill/index.vue') }, - { path: 'editor-simpleMDE', name: `${pre}editor-simpleMDE`, component: () => import('@/pages/demo/components/editor-simpleMDE/index.vue') }, - { path: 'highlight', name: `${pre}highlight`, component: () => import('@/pages/demo/components/highlight/index.vue') }, - { path: 'icon/icon', name: `${pre}icon-icon`, component: () => import('@/pages/demo/components/icon/icon.vue') }, - { path: 'icon/list', name: `${pre}icon-list`, component: () => import('@/pages/demo/components/icon/list.vue') }, - { path: 'icon/select', name: `${pre}icon-select`, component: () => import('@/pages/demo/components/icon/select.vue') }, - { path: 'icon/svg', name: `${pre}icon-svg`, component: () => import('@/pages/demo/components/icon/svg.vue') }, - { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/components/index/index.vue') }, - { path: 'layout/grid', name: `${pre}layout-grid`, component: () => import('@/pages/demo/components/layout/grid.vue') }, - { path: 'layout/splitpane', name: `${pre}layout-splitpane`, component: () => import('@/pages/demo/components/layout/splitpane.vue') }, - { path: 'markdown/source', name: `${pre}markdown-source`, component: () => import('@/pages/demo/components/markdown/source.vue') }, - { path: 'markdown/url', name: `${pre}markdown-url`, component: () => import('@/pages/demo/components/markdown/url.vue') }, - { path: 'scrollbar', name: `${pre}scrollbar`, component: () => import('@/pages/demo/components/scrollbar/index.vue') } + { path: 'bigdata-table', name: `${pre}bigdata-table`, component: () => import('@/pages/demo/components/bigdata-table/index.vue'), meta }, + { path: 'container/full', name: `${pre}container-full`, component: () => import('@/pages/demo/components/container/full.vue'), meta }, + { path: 'container/ghost', name: `${pre}container-ghost`, component: () => import('@/pages/demo/components/container/ghost.vue'), meta }, + { path: 'container/card', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue'), meta }, + { path: 'countup', name: `${pre}countup`, component: () => import('@/pages/demo/components/countup/index.vue'), meta }, + { path: 'editor-quill', name: `${pre}editor-quill`, component: () => import('@/pages/demo/components/editor-quill/index.vue'), meta }, + { path: 'editor-simpleMDE', name: `${pre}editor-simpleMDE`, component: () => import('@/pages/demo/components/editor-simpleMDE/index.vue'), meta }, + { path: 'highlight', name: `${pre}highlight`, component: () => import('@/pages/demo/components/highlight/index.vue'), meta }, + { path: 'icon/icon', name: `${pre}icon-icon`, component: () => import('@/pages/demo/components/icon/icon.vue'), meta }, + { path: 'icon/list', name: `${pre}icon-list`, component: () => import('@/pages/demo/components/icon/list.vue'), meta }, + { path: 'icon/select', name: `${pre}icon-select`, component: () => import('@/pages/demo/components/icon/select.vue'), meta }, + { path: 'icon/svg', name: `${pre}icon-svg`, component: () => import('@/pages/demo/components/icon/svg.vue'), meta }, + { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/components/index/index.vue'), meta }, + { path: 'layout/grid', name: `${pre}layout-grid`, component: () => import('@/pages/demo/components/layout/grid.vue'), meta }, + { path: 'layout/splitpane', name: `${pre}layout-splitpane`, component: () => import('@/pages/demo/components/layout/splitpane.vue'), meta }, + { path: 'markdown/source', name: `${pre}markdown-source`, component: () => import('@/pages/demo/components/markdown/source.vue'), meta }, + { path: 'markdown/url', name: `${pre}markdown-url`, component: () => import('@/pages/demo/components/markdown/url.vue'), meta }, + { path: 'scrollbar', name: `${pre}scrollbar`, component: () => import('@/pages/demo/components/scrollbar/index.vue'), meta } ])('demo-components-') }, { path: '/demo/plugins', name: 'demo-plugins', - meta: { requiresAuth: true }, + meta, redirect: { name: 'demo-plugins-index' }, component: () => import('@/components/core/d2-layout-main/index.vue'), children: (pre => [ - { path: 'build', name: `${pre}build`, component: () => import('@/pages/demo/plugins/build/index.vue') }, - { path: 'clipboard-polyfill', name: `${pre}clipboard-polyfill`, component: () => import('@/pages/demo/plugins/clipboard-polyfill/index.vue') }, - { path: 'day', name: `${pre}day`, component: () => import('@/pages/demo/plugins/day/index.vue') }, - { path: 'export/table', name: `${pre}export-table`, component: () => import('@/pages/demo/plugins/export/table.vue') }, - { path: 'export/txt', name: `${pre}export-txt`, component: () => import('@/pages/demo/plugins/export/txt.vue') }, - { path: 'i18n/demo1', name: `${pre}i18n-demo1`, component: () => import('@/pages/demo/plugins/i18n/demo1.vue') }, - { path: 'i18n/demo2', name: `${pre}i18n-demo2`, component: () => import('@/pages/demo/plugins/i18n/demo2.vue') }, - { path: 'import/csv', name: `${pre}import-csv`, component: () => import('@/pages/demo/plugins/import/csv.vue') }, - { path: 'import/xlsx', name: `${pre}import-xlsx`, component: () => import('@/pages/demo/plugins/import/xlsx.vue') }, - { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/plugins/index/index.vue') }, - { path: 'js-cookie', name: `${pre}js-cookie`, component: () => import('@/pages/demo/plugins/js-cookie/index.vue') }, - { path: 'mock/ajax', name: `${pre}mock-ajax`, component: () => import('@/pages/demo/plugins/mock/ajax.vue') }, - { path: 'mock/dpd', name: `${pre}mock-dpd`, component: () => import('@/pages/demo/plugins/mock/dpd.vue') }, - { path: 'mock/dtd', name: `${pre}mock-dtd`, component: () => import('@/pages/demo/plugins/mock/dtd.vue') } + { path: 'build', name: `${pre}build`, component: () => import('@/pages/demo/plugins/build/index.vue'), meta }, + { path: 'clipboard-polyfill', name: `${pre}clipboard-polyfill`, component: () => import('@/pages/demo/plugins/clipboard-polyfill/index.vue'), meta }, + { path: 'day', name: `${pre}day`, component: () => import('@/pages/demo/plugins/day/index.vue'), meta }, + { path: 'export/table', name: `${pre}export-table`, component: () => import('@/pages/demo/plugins/export/table.vue'), meta }, + { path: 'export/txt', name: `${pre}export-txt`, component: () => import('@/pages/demo/plugins/export/txt.vue'), meta }, + { path: 'i18n/demo1', name: `${pre}i18n-demo1`, component: () => import('@/pages/demo/plugins/i18n/demo1.vue'), meta }, + { path: 'i18n/demo2', name: `${pre}i18n-demo2`, component: () => import('@/pages/demo/plugins/i18n/demo2.vue'), meta }, + { path: 'import/csv', name: `${pre}import-csv`, component: () => import('@/pages/demo/plugins/import/csv.vue'), meta }, + { path: 'import/xlsx', name: `${pre}import-xlsx`, component: () => import('@/pages/demo/plugins/import/xlsx.vue'), meta }, + { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/plugins/index/index.vue'), meta }, + { path: 'js-cookie', name: `${pre}js-cookie`, component: () => import('@/pages/demo/plugins/js-cookie/index.vue'), meta }, + { path: 'mock/ajax', name: `${pre}mock-ajax`, component: () => import('@/pages/demo/plugins/mock/ajax.vue'), meta }, + { path: 'mock/dpd', name: `${pre}mock-dpd`, component: () => import('@/pages/demo/plugins/mock/dpd.vue'), meta }, + { path: 'mock/dtd', name: `${pre}mock-dtd`, component: () => import('@/pages/demo/plugins/mock/dtd.vue'), meta } ])('demo-plugins-') }, { path: '/demo/chart', name: 'demo-chart', - meta: { requiresAuth: true }, + meta, redirect: { name: 'demo-chart-index' }, component: () => import('@/components/core/d2-layout-main/index.vue'), children: (pre => [ - { path: 'all', name: `${pre}all`, component: () => import('@/pages/demo/chart/all/index.vue') }, - { path: 'demo/areaBase', name: `${pre}demo-areaBase`, component: () => import('@/pages/demo/chart/demo/areaBase.vue') }, - { path: 'demo/barBase', name: `${pre}demo-barBase`, component: () => import('@/pages/demo/chart/demo/barBase.vue') }, - { path: 'demo/columnBase', name: `${pre}demo-columnBase`, component: () => import('@/pages/demo/chart/demo/columnBase.vue') }, - { path: 'demo/lineBase', name: `${pre}demo-lineBase`, component: () => import('@/pages/demo/chart/demo/lineBase.vue') }, - { path: 'demo/lineStep', name: `${pre}demo-lineStep`, component: () => import('@/pages/demo/chart/demo/lineStep.vue') }, - { path: 'demo/nightingaleRoseBase', name: `${pre}demo-nightingaleRoseBase`, component: () => import('@/pages/demo/chart/demo/nightingaleRoseBase.vue') }, - { path: 'demo/PieBase', name: `${pre}demo-PieBase`, component: () => import('@/pages/demo/chart/demo/PieBase.vue') }, - { path: 'demo/radarBase', name: `${pre}demo-radarBase`, component: () => import('@/pages/demo/chart/demo/radarBase.vue') }, - { path: 'dynamicSize', name: `${pre}dynamicSize`, component: () => import('@/pages/demo/chart/dynamicSize/index.vue') }, - { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/chart/index/index.vue') } + { path: 'all', name: `${pre}all`, component: () => import('@/pages/demo/chart/all/index.vue'), meta }, + { path: 'demo/areaBase', name: `${pre}demo-areaBase`, component: () => import('@/pages/demo/chart/demo/areaBase.vue'), meta }, + { path: 'demo/barBase', name: `${pre}demo-barBase`, component: () => import('@/pages/demo/chart/demo/barBase.vue'), meta }, + { path: 'demo/columnBase', name: `${pre}demo-columnBase`, component: () => import('@/pages/demo/chart/demo/columnBase.vue'), meta }, + { path: 'demo/lineBase', name: `${pre}demo-lineBase`, component: () => import('@/pages/demo/chart/demo/lineBase.vue'), meta }, + { path: 'demo/lineStep', name: `${pre}demo-lineStep`, component: () => import('@/pages/demo/chart/demo/lineStep.vue'), meta }, + { path: 'demo/nightingaleRoseBase', name: `${pre}demo-nightingaleRoseBase`, component: () => import('@/pages/demo/chart/demo/nightingaleRoseBase.vue'), meta }, + { path: 'demo/PieBase', name: `${pre}demo-PieBase`, component: () => import('@/pages/demo/chart/demo/PieBase.vue'), meta }, + { path: 'demo/radarBase', name: `${pre}demo-radarBase`, component: () => import('@/pages/demo/chart/demo/radarBase.vue'), meta }, + { path: 'dynamicSize', name: `${pre}dynamicSize`, component: () => import('@/pages/demo/chart/dynamicSize/index.vue'), meta }, + { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/chart/index/index.vue'), meta } ])('demo-chart-') }, { path: '/demo/business', name: 'demo-business', - meta: { requiresAuth: true }, + meta, redirect: { name: 'demo-business-index' }, component: () => import('@/components/core/d2-layout-main/index.vue'), children: (pre => [ - { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/business/index/index.vue') } + { path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/business/index/index.vue'), meta } ])('demo-business-') }, // 登陆 From 7aaf5ccce7c4c6cd46985aac68fe24164cd372bf Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Sat, 16 Jun 2018 19:19:08 +0800 Subject: [PATCH 4/5] no message Former-commit-id: 8329299ce85ce8b02f8656e7daa01ee0a4de5cc0 [formerly 8329299ce85ce8b02f8656e7daa01ee0a4de5cc0 [formerly 8329299ce85ce8b02f8656e7daa01ee0a4de5cc0 [formerly 8329299ce85ce8b02f8656e7daa01ee0a4de5cc0 [formerly 10ea0c6299417071a6f8d8ec3c8cb6db5dee87ff [formerly 0f552a7a4f3aa7b8052c148ffa46b7491123f877]]]]] Former-commit-id: a5f542a0187ef215bf13a1134987cf6f172c48fb Former-commit-id: befa7739ad2736a0545f574fc29924c2a3cae1d9 Former-commit-id: 85a924b44eed00c21cc76ac48760fc215676ae6e [formerly 39e8b7ca24567f93fdcc19f6320e3225a71b6e24] Former-commit-id: 286b66a0e8d0484d9b05579f3160aa96fb068ce9 Former-commit-id: eae45a26c22185d3f266b37fe8b851917754f145 Former-commit-id: 296c72114af3d5fe565180a345df71e642cd46ed Former-commit-id: aaf65a706338f0d3638a461b364d19fb15a2c7d8 Former-commit-id: 750c6c0ea619b9881b88e691c4f6db2c6bbfe56e --- src/router/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index dec20b21..0a7f623b 100755 --- a/src/router/index.js +++ b/src/router/index.js @@ -116,8 +116,8 @@ const routes = [ let router = new VueRouter({ routes }) router.beforeEach((to, from, next) => { - // 需要身份校验 - if (to.meta.requiresAuth) { + // 验证当前路由所有的匹配中是否需要有登陆验证的 + if (to.matched.some(r => r.meta.requiresAuth)) { // 这里暂时将cookie里是否存有token作为验证是否登陆的条件 // 请根据自身业务需要修改 if (Cookies.get('token')) { From 185ba97bf245877b4ae3b6a63069967049ab13d1 Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Sat, 16 Jun 2018 19:24:35 +0800 Subject: [PATCH 5/5] no message Former-commit-id: 99b86ebbb077d4282c749d62d60f610b471dbb39 [formerly 99b86ebbb077d4282c749d62d60f610b471dbb39 [formerly 99b86ebbb077d4282c749d62d60f610b471dbb39 [formerly 99b86ebbb077d4282c749d62d60f610b471dbb39 [formerly 07632ba3c6438546dd00f9d65fc8290204021155 [formerly df315d3e83640f38161ae91962dbc92511e0b8f7]]]]] Former-commit-id: 5c1105b2a6dc86473ef06adb45ff0d48cbae93bd Former-commit-id: 3ba9a9e51d554fb2db573b4f7cb30bdce032dce4 Former-commit-id: 7dadac2752f3c639b91e5d38df8c30ca1051d91d [formerly 8ea6d19b9926470593b5d7bd08b55589a1211100] Former-commit-id: 0b0710f316d6a19ea91377b79cc306b5d8b70f7d Former-commit-id: 2073673bfa294331ac90cc65a9375da15d74454a Former-commit-id: e5f8c3c324412e5860719974390aa844794c4e86 Former-commit-id: 8a5929fe4c17eeee38027c401c4405daef3d8602 Former-commit-id: d36a82d152d77be33cc227ef1b2e1a9f4117c757 --- docs/zh/guide/change-log.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/zh/guide/change-log.md b/docs/zh/guide/change-log.md index 766174dc..cc7412da 100644 --- a/docs/zh/guide/change-log.md +++ b/docs/zh/guide/change-log.md @@ -25,6 +25,7 @@ * [ 新增 ] 自定义滚动条演示页面 * [ 新增 ] 流星主题新增背景图片上层的半透明遮罩 * [ 修复 ] 主题设置失效bug +* [ 修复 ] router守卫验证登陆部分代码修改 ## v1.0.0