|
@@ -195,12 +195,16 @@ const handleUnbundle = async () => {
|
|
|
},
|
|
|
})
|
|
|
}
|
|
|
-onLoad(async (query: { id: string; isShared?: string }) => {
|
|
|
+onLoad(async (query: { id: string; isShared?: string, scene?:string }) => {
|
|
|
if (query.id) {
|
|
|
id.value = query.id
|
|
|
} else {
|
|
|
id.value = userInfo.value.userId
|
|
|
- // memberInfo.value =
|
|
|
+ }
|
|
|
+ if(query.scene){
|
|
|
+ console.log(decodeURIComponent(query.scene))
|
|
|
+ id.value = decodeURIComponent(query.scene).split("=")[1]
|
|
|
+ isShared.value = true
|
|
|
}
|
|
|
if (query.isShared) {
|
|
|
isShared.value = true
|