From 7326bd62cc7e7396748b5951593173fb91447794 Mon Sep 17 00:00:00 2001 From: yangsy Date: Tue, 9 Sep 2025 15:38:21 +0800 Subject: [PATCH] feat: check version --- src/composables/query/system/use-version-check-query.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/composables/query/system/use-version-check-query.ts b/src/composables/query/system/use-version-check-query.ts index aebf780..c31f2ab 100644 --- a/src/composables/query/system/use-version-check-query.ts +++ b/src/composables/query/system/use-version-check-query.ts @@ -35,16 +35,15 @@ export function useVersionCheckQuery() { title: '发现新版本', content: '请刷新网页更新', positiveText: '刷新页面', + maskClosable: false, onPositiveClick: () => { window.location.reload(); }, negativeText: '稍后检查', onNegativeClick: () => { - // window.$dialog.destroyAll(); dialogShow.value = false; }, onClose: () => { - // window.$dialog.destroyAll(); dialogShow.value = false; }, });