修复 是否同步操作不保存状态
This commit is contained in:
parent
ae87589a45
commit
361bcb7719
|
@ -62,7 +62,7 @@
|
||||||
]" />
|
]" />
|
||||||
</div>
|
</div>
|
||||||
<div class="col-3"><span>{{ $t('Whether to operate synchronously') }}</span><q-checkbox
|
<div class="col-3"><span>{{ $t('Whether to operate synchronously') }}</span><q-checkbox
|
||||||
v-model="auto_sync" /></div>
|
v-model="auto_sync" @update:model-value="()=>{}" /></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -397,12 +397,15 @@ export default defineComponent({
|
||||||
ste_status.value = 0;
|
ste_status.value = 0;
|
||||||
}, 100);
|
}, 100);
|
||||||
})
|
})
|
||||||
|
if(sessionStorage.FusionLocale_async)auto_sync.value=sessionStorage.FusionLocale_async=='true'
|
||||||
|
console.log("🚀 ~ file: FusionLocale.vue:401 ~ onMounted ~ sessionStorage.FusionLocale_async:", sessionStorage.FusionLocale_async)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}),
|
}),
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
sessionStorage.FusionLocale = JSON.stringify(set_cache.value);
|
sessionStorage.FusionLocale = JSON.stringify(set_cache.value);
|
||||||
|
sessionStorage.FusionLocale_async=auto_sync.value
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
@ -550,7 +553,7 @@ export default defineComponent({
|
||||||
let tmpobjall = JSON.parse($store.state.fusion_configuration)
|
let tmpobjall = JSON.parse($store.state.fusion_configuration)
|
||||||
if ($store.getters.GetTheCurrentlySelectedCamera[1] == 0) {
|
if ($store.getters.GetTheCurrentlySelectedCamera[1] == 0) {
|
||||||
|
|
||||||
let tmp = set_cache.value[1] == null ? tmpobjall.projectors[1].params : JSON.parse(set_cache.value[1]);
|
let tmp = set_cache.value[1].array == null ? tmpobjall.projectors[1].params : JSON.parse(set_cache.value[1]).array;
|
||||||
let set_cache_tmp: any = []
|
let set_cache_tmp: any = []
|
||||||
if (tmp[1].hasOwnProperty("power")) {
|
if (tmp[1].hasOwnProperty("power")) {
|
||||||
for (let index = 0; index < 4; index++) {
|
for (let index = 0; index < 4; index++) {
|
||||||
|
@ -609,7 +612,8 @@ export default defineComponent({
|
||||||
auxiliary_line,
|
auxiliary_line,
|
||||||
reset,
|
reset,
|
||||||
auto_sync,
|
auto_sync,
|
||||||
config
|
config,
|
||||||
|
save_set_cache
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -354,6 +354,7 @@ export default defineComponent({
|
||||||
sessionStorage.removeItem("FourPointCalibration");
|
sessionStorage.removeItem("FourPointCalibration");
|
||||||
sessionStorage.removeItem("GridSettings");
|
sessionStorage.removeItem("GridSettings");
|
||||||
sessionStorage.removeItem("Debugging");
|
sessionStorage.removeItem("Debugging");
|
||||||
|
sessionStorage.removeItem("FusionLocale_async");
|
||||||
}
|
}
|
||||||
|
|
||||||
const config = ref({ col: 0, row: 0 });
|
const config = ref({ col: 0, row: 0 });
|
||||||
|
|
Loading…
Reference in New Issue