|
@@ -37,11 +37,11 @@
|
|
import { RightFillPano } from "@/layout";
|
|
import { RightFillPano } from "@/layout";
|
|
import GuideEdit from "./guide/edit.vue";
|
|
import GuideEdit from "./guide/edit.vue";
|
|
import PathEdit from "./path/edit.vue";
|
|
import PathEdit from "./path/edit.vue";
|
|
-import { nextTick, reactive, ref, watchEffect } from "vue";
|
|
|
|
|
|
+import { nextTick, reactive, ref, watchEffect, onMounted } from "vue";
|
|
import { guides, isEdit, paths } from "@/store";
|
|
import { guides, isEdit, paths } from "@/store";
|
|
import router from "@/router";
|
|
import router from "@/router";
|
|
import { currentIsFullView } from "@/utils/full";
|
|
import { currentIsFullView } from "@/utils/full";
|
|
-import { SDK, sdk as _sdk } from "@/sdk";
|
|
|
|
|
|
+import { sdk } from "@/sdk";
|
|
|
|
|
|
const current = ref("path");
|
|
const current = ref("path");
|
|
const tabs = reactive([
|
|
const tabs = reactive([
|
|
@@ -62,6 +62,10 @@ const quiskAdd = async (key: string) => {
|
|
quiskObj.value.add();
|
|
quiskObj.value.add();
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
+onMounted(() => {
|
|
|
|
+ sdk.setHisPathDisplay(false)
|
|
|
|
+ sdk.setLivePathDisplay(false)
|
|
|
|
+});
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|