From 262c0ba08e80df87768c1bd855374ef2ec93432e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Sun, 15 Dec 2019 20:17:59 +0800 Subject: [PATCH 01/40] perf[documentation]: refine css --- src/components/Share/DropdownMenu.vue | 5 ++++- src/views/documentation/index.vue | 30 +++++++-------------------- 2 files changed, 12 insertions(+), 23 deletions(-) diff --git a/src/components/Share/DropdownMenu.vue b/src/components/Share/DropdownMenu.vue index a629fe9a..d194a517 100644 --- a/src/components/Share/DropdownMenu.vue +++ b/src/components/Share/DropdownMenu.vue @@ -44,6 +44,7 @@ $t: .1s; width: 250px; position: relative; z-index: 1; + height: auto!important; &-title { width: 100%; display: block; @@ -65,10 +66,12 @@ $t: .1s; position: absolute; width: 100%; background: #e0e0e0; + color: #000; line-height: 60px; height: 60px; cursor: pointer; - font-size: 20px; + font-size: 18px; + overflow: hidden; opacity: 1; transition: transform 0.28s ease; &:hover { diff --git a/src/views/documentation/index.vue b/src/views/documentation/index.vue index 6f69cf42..d3f77468 100644 --- a/src/views/documentation/index.vue +++ b/src/views/documentation/index.vue @@ -1,26 +1,10 @@ @@ -53,8 +37,10 @@ export default { margin: 50px; display: flex; flex-wrap: wrap; + justify-content: space-evenly; + .document-btn { - margin-left: 50px; + flex-shrink: 0; display: block; cursor: pointer; background: black; From 4f563a7bfe6e6e601c4500d491c8e60cfd9c7023 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9F=AC?= <605682551@qq.com> Date: Tue, 31 Dec 2019 14:14:34 +0800 Subject: [PATCH 02/40] =?UTF-8?q?fix[Logout]:=20click=20blank=20area=20of?= =?UTF-8?q?=20=E2=80=8B=E2=80=8BdropDown=20able=20to=20logout=20(#2896)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed clicking blank area of ​​drop-down unable to log out --- src/layout/components/Navbar.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index d9075a24..37bc1e69 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -36,8 +36,8 @@ Docs - - Log Out + + Log Out From a0b39d5043349e1ee236173a395af7260e000d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E7=BE=BD=E9=A3=9E?= Date: Mon, 6 Jan 2020 22:22:37 +0800 Subject: [PATCH 03/40] perf: import mockXHR only in production (#2910) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 自动排除mock 生产环境,使用webpack的条件编译自动排除mock数据 * perf: refine Co-authored-by: 花裤衩 --- src/main.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.js b/src/main.js index ef07f389..fb75857d 100644 --- a/src/main.js +++ b/src/main.js @@ -25,11 +25,12 @@ import * as filters from './filters' // global filters * you can execute: mockXHR() * * Currently MockJs will be used in the production environment, - * please remove it before going online! ! ! + * please remove it before going online ! ! ! */ -import { mockXHR } from '../mock' if (process.env.NODE_ENV === 'production') { - mockXHR() + import('../mock').then(({ mockXHR }) => { + mockXHR() + }) } Vue.use(Element, { From fd5a2e8da2592fdb6cb30426de40d87a773b8bfe Mon Sep 17 00:00:00 2001 From: Kaitian Xie Date: Mon, 6 Jan 2020 06:34:14 -0800 Subject: [PATCH 04/40] perf[Menu]: remove unused menu-wrapper (#2903) --- src/layout/components/Sidebar/SidebarItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/components/Sidebar/SidebarItem.vue b/src/layout/components/Sidebar/SidebarItem.vue index 2d49dd87..a418c3d7 100644 --- a/src/layout/components/Sidebar/SidebarItem.vue +++ b/src/layout/components/Sidebar/SidebarItem.vue @@ -1,5 +1,5 @@