From 769e684c6168e0dbc92895c5be445b1bb2d6abf6 Mon Sep 17 00:00:00 2001 From: huohuoit <60650531+huohuoit@users.noreply.github.com> Date: Thu, 28 Oct 2021 11:43:34 +0800 Subject: [PATCH 01/12] =?UTF-8?q?*=20feat:=E6=96=B0=E5=A2=9Evscode?= =?UTF-8?q?=E4=B8=AD=E7=9A=84vue3.2.setup-snippets=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=89=87=E6=AE=B5=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat:新增vscode中的vue3.2.setup-snippets代码片段文件 --- .vscode/vue3.2.setup-snippets | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/vue3.2.setup-snippets diff --git a/.vscode/vue3.2.setup-snippets b/.vscode/vue3.2.setup-snippets new file mode 100644 index 000000000..fd8a41d8a --- /dev/null +++ b/.vscode/vue3.2.setup-snippets @@ -0,0 +1,20 @@ +{ + "Vue3.2快速生成模板": { + "prefix": "Vue3.2", + "body": [ + "", + "\n", + "\n", + "" + ], + "description": "Vue3.2" + } +} From 3389f3118a3c12e5f775a200b520bc70f9c68f53 Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Fri, 29 Oct 2021 15:37:48 +0800 Subject: [PATCH 02/12] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=B0=81?= =?UTF-8?q?=E8=A3=85=E7=9A=84axios=E8=AF=B7=E6=B1=82=E8=BF=87=E5=BF=ABbefo?= =?UTF-8?q?reRequestCallback=E5=8F=AA=E8=A7=A6=E5=8F=91=E4=B8=80=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/http/core.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/http/core.ts b/src/utils/http/core.ts index 86d757197..3d3413767 100644 --- a/src/utils/http/core.ts +++ b/src/utils/http/core.ts @@ -128,7 +128,6 @@ class EnclosureHttp { // 优先判断post/get等方法是否传入回掉,否则执行初始化设置等回掉 if (typeof this.beforeRequestCallback === "function") { this.beforeRequestCallback($config); - this.beforeRequestCallback = undefined; return $config; } if (EnclosureHttp.initConfig.beforeRequestCallback) { From ae72cccbb94df40acdff49920bdabe6055b92bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=80=E4=B8=87?= <52823142+Ten-K@users.noreply.github.com> Date: Fri, 29 Oct 2021 18:41:57 +0800 Subject: [PATCH 03/12] =?UTF-8?q?fix:=20=E8=8F=9C=E5=8D=95=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E8=BF=87=E9=95=BF=E6=B7=BB=E5=8A=A0tooltip=20(#78)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 菜单名称过长添加tooltip --- src/layout/components/sidebar/sidebarItem.vue | 71 +++++++++++++++++-- src/layout/types.ts | 1 + 2 files changed, 68 insertions(+), 4 deletions(-) diff --git a/src/layout/components/sidebar/sidebarItem.vue b/src/layout/components/sidebar/sidebarItem.vue index 160ddb417..7e698ca42 100644 --- a/src/layout/components/sidebar/sidebarItem.vue +++ b/src/layout/components/sidebar/sidebarItem.vue @@ -1,8 +1,13 @@