From 7ea97f8433ff9a0d4e83fb400bc8369eb601c240 Mon Sep 17 00:00:00 2001 From: zhuoda Date: Tue, 8 Apr 2025 20:19:41 +0800 Subject: [PATCH] =?UTF-8?q?v3.17.0=20=E3=80=90=E6=96=B0=E5=A2=9E=E3=80=91?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=8F=9C=E5=8D=95=E5=B1=95=E5=BC=801?= =?UTF-8?q?=E4=B8=AA=E9=85=8D=E7=BD=AE=EF=BC=9B=E3=80=90=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E3=80=91=E7=A7=BB=E9=99=A4=E8=A1=A8=E6=A0=BC=E5=9B=BA=E5=AE=9A?= =?UTF-8?q?=E9=AB=98=E5=BA=A6=EF=BC=9B=E3=80=90=E6=96=B0=E5=A2=9E=E3=80=91?= =?UTF-8?q?App=E7=99=BB=E5=BD=95token=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smart-admin-web-javascript/src/App.vue | 5 ++++- .../src/config/app-config.js | 4 ++-- .../src/i18n/lang/en-US/index.js | 1 + .../src/i18n/lang/zh-CN/index.js | 1 + .../header-user-space/header-setting.vue | 22 +++++++++---------- .../components/side-menu/recursion-menu.vue | 17 ++++++++++++-- .../src/layout/side-layout.vue | 2 +- smart-admin-web-javascript/src/main.js | 7 ------ .../views/business/erp/goods/goods-list.vue | 15 ++++++++++++- smart-admin-web-typescript/src/App.vue | 4 ++++ .../src/config/app-config.ts | 4 ++-- .../src/i18n/lang/en-US/index.ts | 1 + .../src/i18n/lang/zh-CN/index.ts | 1 + .../header-user-space/header-setting.vue | 22 +++++++++---------- .../components/side-menu/recursion-menu.vue | 16 ++++++++++++-- .../src/layout/side-layout.vue | 2 +- smart-admin-web-typescript/src/main.ts | 7 ------ .../src/types/config.d.ts | 2 -- .../views/business/erp/goods/goods-list.vue | 15 ++++++++++--- smart-app/src/lib/smart-request.js | 4 ++-- 20 files changed, 95 insertions(+), 57 deletions(-) diff --git a/smart-admin-web-javascript/src/App.vue b/smart-admin-web-javascript/src/App.vue index d0bf2978..1e087c28 100644 --- a/smart-admin-web-javascript/src/App.vue +++ b/smart-admin-web-javascript/src/App.vue @@ -52,7 +52,7 @@ import { themeColors } from '/@/theme/color.js'; import { Popover } from 'ant-design-vue'; import SmartCopyIcon from '/@/components/framework/smart-copy-icon/index.vue'; - + import _ from 'lodash'; const slots = useSlots(); const antdLocale = computed(() => messages[useAppConfigStore().language].antdLocale); const dayjsLocale = computed(() => messages[useAppConfigStore().language].dayjsLocale); @@ -90,6 +90,9 @@ return text; } } + window.addEventListener('resize',_.throttle(()=>{ + window.location.reload() + },1000));