From ba17fcecc14e88801e2f67e5a36a5186fa7de13c Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 23 Dec 2025 14:42:19 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=A7=BB=E5=8A=A8=E7=AB=AF):=20pc=20?= =?UTF-8?q?=E7=AB=AF=E5=B7=A5=E4=BD=9C=E5=8F=B0=E5=92=8C=E7=A7=BB=E5=8A=A8?= =?UTF-8?q?=E7=AB=AF=E9=BB=98=E8=AE=A4=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=B8=BA=E6=88=91=E7=9A=84=E6=94=B6=E8=97=8F=20#17637?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/mobile/home/index.vue | 6 +++--- core/core-frontend/src/views/workbranch/ShortcutTable.vue | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/core-frontend/src/views/mobile/home/index.vue b/core/core-frontend/src/views/mobile/home/index.vue index 6d3cfa3939..308d7d0ec8 100644 --- a/core/core-frontend/src/views/mobile/home/index.vue +++ b/core/core-frontend/src/views/mobile/home/index.vue @@ -23,7 +23,7 @@ const router = useRouter() const { t } = useI18n() const { wsCache } = useCache('sessionStorage') -const activeTab = ref('recent') +const activeTab = ref('store') const emptyTips = ref('') const state = reactive({ tableData: [], @@ -62,8 +62,8 @@ const loadShareTableData = () => { } const baseTablePaneList = ref([ - { title: t('work_branch.recent'), name: 'recent', disabled: false }, { title: 'ζˆ‘ηš„ζ”Άθ—', name: 'store', disabled: false }, + { title: t('work_branch.recent'), name: 'recent', disabled: false }, { title: t('visualization.share_out'), name: 'share', disabled: false } ]) @@ -139,7 +139,7 @@ const handleClick = ({ name, disabled }) => { } } onMounted(() => { - activeTab.value = wsCache.get('activeTab') || 'recent' + activeTab.value = wsCache.get('activeTab') || 'store' wsCache.set('activeTab', '') !!busiAuthList.length && handleClick({ diff --git a/core/core-frontend/src/views/workbranch/ShortcutTable.vue b/core/core-frontend/src/views/workbranch/ShortcutTable.vue index 34d46cc31c..c2ff7c265f 100644 --- a/core/core-frontend/src/views/workbranch/ShortcutTable.vue +++ b/core/core-frontend/src/views/workbranch/ShortcutTable.vue @@ -45,7 +45,7 @@ defineProps({ }) const desktop = wsCache.get('app.desktop') const panelKeyword = ref() -const activeName = ref('recent') +const activeName = ref('store') const activeCommand = ref('all_types') const state = reactive({ tableData: [], @@ -146,8 +146,8 @@ const loadTableData = () => { } const baseTablePaneList = ref([ - { title: t('work_branch.recently_used'), name: 'recent', disabled: false }, { title: t('work_branch.my_collection'), name: 'store', disabled: false }, + { title: t('work_branch.recently_used'), name: 'recent', disabled: false }, { title: t('visualization.share_out'), name: 'share', disabled: false } ]) @@ -182,7 +182,7 @@ watch( onMounted(() => { !!busiAuthList.length && handleClick({ - paneName: 'recent', + paneName: 'store', uid: 0, slots: undefined, props: undefined,