From f01b1cdc10ebdc32d7278ce1f545f58282d36121 Mon Sep 17 00:00:00 2001 From: JayChou Date: Sat, 22 Mar 2025 11:09:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B8=85=E6=A5=9A=E7=BC=93?= =?UTF-8?q?=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/designRoute/index.vue | 3 +++ src/views/largeDataScreen/home.vue | 9 ++++++--- src/views/program/index.vue | 2 ++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/views/designRoute/index.vue b/src/views/designRoute/index.vue index be728d7..f3ce482 100644 --- a/src/views/designRoute/index.vue +++ b/src/views/designRoute/index.vue @@ -12,6 +12,8 @@
撤回 恢复 + 清除缓存 + 保存 提示
@@ -1147,6 +1149,7 @@ function loadFromLocalStorage() { function clearLocalStorage() { localStorage.removeItem(SESSION_KEY); + window.location.reload(); } diff --git a/src/views/largeDataScreen/home.vue b/src/views/largeDataScreen/home.vue index a3da06e..8c58bed 100644 --- a/src/views/largeDataScreen/home.vue +++ b/src/views/largeDataScreen/home.vue @@ -744,7 +744,7 @@ import { ref } from "vue"; import { setStepEvent } from "@/utils/setStep"; import { formatDate } from "@/utils"; import { useRouter, useRoute } from "vue-router"; - +import { onMounted } from "vue"; type Falg = boolean; type Step = number; const falg = ref(Boolean(localStorage.getItem("falg")) || false); @@ -756,16 +756,19 @@ const dialogVisible = ref(false); const Installation = ref(false); const Popup = ref(false); const installationStep = ref( - Number(localStorage.getItem("installationStep")) || 0 + Number(localStorage.getItem("installationStep")) || 1 ); const route = useRoute(); const router = useRouter(); const isShowIdea = ref(false); console.log(route); -if (route.query.idea) { +onMounted(() => { + if (route.query.idea) { isShowIdea.value = true; installationStep.value = 10 } +}) + const checkList = ref([1, 2]); const unpack = (): void => { falg.value = true; diff --git a/src/views/program/index.vue b/src/views/program/index.vue index a0994ec..fdfbaaf 100644 --- a/src/views/program/index.vue +++ b/src/views/program/index.vue @@ -1476,6 +1476,8 @@ function loadFromLocalStorage() { function clearLocalStorage() { localStorage.removeItem(SESSION_KEY); + window.location.reload(); + } // 恢复画布状态 function restoreGraph() {