From 82fc72c185b70faa34a0255fb1c07ae85e35a91d Mon Sep 17 00:00:00 2001 From: shefengchun <1077478963@qq.com> Date: Tue, 28 Feb 2023 16:08:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BF=AB=E9=80=9F=20?= =?UTF-8?q?=E5=A4=9A=E6=AC=A1=E7=82=B9=E5=87=BB=E9=87=8D=E7=BD=AE=E6=89=80?= =?UTF-8?q?=E6=9C=89=E5=AF=BC=E8=87=B4=E7=95=8C=E9=9D=A2=E4=B8=8D=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FusionSettingsDialog.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/FusionSettingsDialog.vue b/src/components/FusionSettingsDialog.vue index 6d55253..3ad0572 100644 --- a/src/components/FusionSettingsDialog.vue +++ b/src/components/FusionSettingsDialog.vue @@ -328,6 +328,7 @@ export default defineComponent({ /** * 重置全部参数 */ + const tmp_options=ref("") const resetall = () => { set?.ResetBlendingConfig().then((res) => { let tmp = JSON.parse(res ? res.config : ""); @@ -337,12 +338,14 @@ export default defineComponent({ config.value.row = tmp.row; $store.commit("setfusion_configuration", res?.config); }); - let tmp = options.value + if(options.value.length!=0){ + tmp_options.value = options.value + } options.value = "" $store.commit("setSelectedProjector", "0/0"); setTimeout(() => { clear_sessionStorage() - options.value = tmp + options.value = tmp_options.value }, 300); } /**