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() {