|
@@ -96,19 +96,25 @@ export const useMainStore = defineStore('main', {
|
|
|
boxVideos: string
|
|
|
boxModels: string
|
|
|
scrbInfo: {
|
|
|
- aiSetting: any
|
|
|
- navigation: any
|
|
|
- baseSetting: any
|
|
|
+ aiSetting: any[]
|
|
|
+ navigation: any[]
|
|
|
+ baseSetting: any[]
|
|
|
}
|
|
|
}
|
|
|
if (this.sceneInfo) {
|
|
|
+ //@ts-ignore
|
|
|
if (this.sceneInfo.scrbInfo.aiSetting) {
|
|
|
+ //@ts-ignore
|
|
|
this.aiSetting = this.sceneInfo.scrbInfo.aiSetting
|
|
|
}
|
|
|
+ //@ts-ignore
|
|
|
if (this.sceneInfo.scrbInfo.navigation) {
|
|
|
+ //@ts-ignore
|
|
|
this.navigation = this.sceneInfo.scrbInfo.navigation
|
|
|
}
|
|
|
+ //@ts-ignore
|
|
|
if (this.sceneInfo.scrbInfo.baseSetting) {
|
|
|
+ //@ts-ignore
|
|
|
this.basicConfig = this.sceneInfo.scrbInfo.baseSetting
|
|
|
}
|
|
|
}
|