From cdf11ae8c95e16091124ad4164b46428625ec964 Mon Sep 17 00:00:00 2001 From: JayChou Date: Tue, 1 Apr 2025 11:06:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8B=A6=E6=88=AA=E5=99=A8?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=20=E4=BF=AE=E5=A4=8D=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=A0=8F=E7=8A=B6=E6=80=81=20=E4=BF=AE=E5=A4=8D=E9=80=80?= =?UTF-8?q?=E5=87=BA=E7=99=BB=E5=BD=95=E7=BC=93=E5=AD=98=E6=B8=85=E7=A9=BA?= =?UTF-8?q?=E4=B8=8D=E5=AE=8C=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/auth.ts | 5 +++-- src/utils/request.ts | 1 + src/views/compiler/index.vue | 2 +- src/views/designRoute/index.vue | 5 +++-- src/views/largeDataScreen/home.vue | 4 ++-- src/views/program/index.vue | 3 ++- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/utils/auth.ts b/src/utils/auth.ts index fd8b2af..d3e51ae 100644 --- a/src/utils/auth.ts +++ b/src/utils/auth.ts @@ -14,9 +14,10 @@ const clearLocalStorage = () => { localStorage.removeItem("product"); localStorage.removeItem("installationStep"); localStorage.removeItem("stepIds"); - // localStorage.removeItem("wenduCode"); - // localStorage.removeItem("shiduCode"); + localStorage.removeItem("graph_operations"); + localStorage.removeItem("graph_operations1"); localStorage.removeItem('isStudy') + localStorage.removeItem('complete') } export { diff --git a/src/utils/request.ts b/src/utils/request.ts index 0505c8c..26867e1 100644 --- a/src/utils/request.ts +++ b/src/utils/request.ts @@ -47,6 +47,7 @@ server.interceptors.response.use( return Promise.reject(response); case 200: case 0: + return response.data; default: ElMessage.error(message); diff --git a/src/views/compiler/index.vue b/src/views/compiler/index.vue index ee07410..3f1ff66 100644 --- a/src/views/compiler/index.vue +++ b/src/views/compiler/index.vue @@ -8,7 +8,7 @@
- 保存 + 保存 返回
diff --git a/src/views/designRoute/index.vue b/src/views/designRoute/index.vue index 8311254..3834131 100644 --- a/src/views/designRoute/index.vue +++ b/src/views/designRoute/index.vue @@ -840,8 +840,7 @@ const onRedo = () => { const wenduCode = "float a;a=1000000*M*S/W;T+(1-exp(-t/a))*100+T0;if(T>=100){T=100;}"; const shiduCode = "float b;a=10000*S0/W1;R+(1-exp(-t1/b))*100+R0;if(R>=100){R=100;}"; const onSave = () => { - setStepEvent(3, formatDate(new Date())); - settingStore.activeStepIndex =4 + // console.log(removeDuplicateEdges(formatEdges()), standardData); // return @@ -854,6 +853,8 @@ const onSave = () => { if(settingStore.shiduCode != shiduCode){ return ElMessage.error("湿度代码编写错误"); } + setStepEvent(3, formatDate(new Date())); + settingStore.activeStepIndex =4 ElMessage.success("保存成功"); settingStore.setValue( true,'saveRoute'); localStorage.setItem('saveRoute',true) diff --git a/src/views/largeDataScreen/home.vue b/src/views/largeDataScreen/home.vue index e553da9..11c5ca8 100644 --- a/src/views/largeDataScreen/home.vue +++ b/src/views/largeDataScreen/home.vue @@ -834,7 +834,7 @@ const isShowStrring = Boolean(localStorage.getItem("falg")) || false; // 前往labView const goToLabView = async () => { - if (!isShowStrring) { + if (isShowStrring) { await setStepEvent(1, formatDate(new Date())); useSettingStore.activeStepIndex = 2; } @@ -842,7 +842,7 @@ const goToLabView = async () => { router.push("/program"); }; const goToLabIdea = async () => { - if (!isShowStrring) { + if (isShowStrring) { await setStepEvent(7, formatDate(new Date())); useSettingStore.activeStepIndex = 8; } diff --git a/src/views/program/index.vue b/src/views/program/index.vue index 1003f8f..3477a5f 100644 --- a/src/views/program/index.vue +++ b/src/views/program/index.vue @@ -39,7 +39,7 @@ -
+
撤回 恢复 清除缓存 @@ -1535,6 +1535,7 @@ const exportWord = async () => { }) dialogVisible.value = false; ElMessage.success('保存成功') + localStorage.removeItem("falg"); await setStepEvent(11, formatDate(new Date())); useSettingStore.activeStepIndex = 12 router.push('/studyPage')