修复读取场景时的bug
This commit is contained in:
parent
fe3d2695a1
commit
86834823b7
|
@ -309,19 +309,19 @@ export default defineComponent({
|
||||||
if (res == null || res.scenes.length == 0) return
|
if (res == null || res.scenes.length == 0) return
|
||||||
plan_list.splice(0, plan_list.length);
|
plan_list.splice(0, plan_list.length);
|
||||||
for (let index = 0; index < res.scenes.length; index++) {
|
for (let index = 0; index < res.scenes.length; index++) {
|
||||||
plan_list.push(res.scenes[index]);
|
plan_list[index]=(res.scenes[index]);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
setTimeout(() => {
|
// setTimeout(() => {
|
||||||
try {
|
// try {
|
||||||
|
|
||||||
} catch (error) {
|
// } catch (error) {
|
||||||
erroe();
|
// erroe();
|
||||||
}
|
// }
|
||||||
}, 1000);
|
// }, 1000);
|
||||||
});
|
});
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -346,6 +346,7 @@ export default defineComponent({
|
||||||
$store.commit("setfusion_configuration", res?.config);
|
$store.commit("setfusion_configuration", res?.config);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
get_scenes()
|
||||||
}, 1000);
|
}, 1000);
|
||||||
});
|
});
|
||||||
const save_cover_name = ref("")
|
const save_cover_name = ref("")
|
||||||
|
|
Loading…
Reference in New Issue