|
@@ -11,7 +11,7 @@
|
|
|
<n-layout position="absolute" style="height: 100vh">
|
|
|
<n-layout-header style="padding: 24px" bordered>
|
|
|
<div class="flex justify-between items-center">
|
|
|
- <div class="back" style="position: relative; top: 4px; color: #fff">
|
|
|
+ <div class="back" style="position: relative; top: 4px; color: #fff;cursor:pointer;" @click="handleList">
|
|
|
<n-icon size="24" :component="ChevronBackOutline" />
|
|
|
<span style="position: relative; top: -6px">返回我的场景</span>
|
|
|
</div>
|
|
@@ -163,7 +163,9 @@ const sceneRefWidth = computed(() => {
|
|
|
|
|
|
const sceneURL = computed(() => main.sceneURL)
|
|
|
const sceneMobileMode = computed(() => main.sceneMode == 'mobile')
|
|
|
-
|
|
|
+const handleList = () => {
|
|
|
+ window.open('/#/scene')
|
|
|
+ }
|
|
|
const sceneRef = ref()
|
|
|
const main = useMainStore()
|
|
|
const { setSceneLink, setSceneRef } = main
|