gemercheung 9 kuukautta sitten
vanhempi
commit
df5f8248f2
1 muutettua tiedostoa jossa 9 lisäystä ja 3 poistoa
  1. 9 3
      src/store/main.ts

+ 9 - 3
src/store/main.ts

@@ -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
         }
       }