const sceneLinkTemp = [ { id: 1, title: 'A馆', items: [ { title: 'AC馆', link: 'SG-r5DtdswkZ49' }, { title: 'A馆一楼', link: 'SG-3gCcPDkuBox' }, { title: 'A馆二楼', link: 'SG-ryBEFpjTbxB' } ] }, { id: 2, title: 'B馆', items: [ { title: 'BD馆', link: 'SG-nFe1LNF3kpy' }, { title: 'B1馆', link: 'SG-OOJPFzY5ZFz' }, { title: 'B2馆', link: 'SG-9ZztEoyICcV' }, { title: 'B馆中央大厅', link: 'SG-tVtpwYiqvaf' } ] }, { id: 3, title: 'C馆', items: [ { title: 'C馆', link: 'SG-goZny7WUC1o' } ] }, { id: 4, title: 'D馆', items: [ { title: 'D馆', link: 'SG-nFe1LNF3kpy' }, { title: 'D馆会议中心', link: 'SG-vL4jGsIw63c' } ] } ] type SceneLinkType = { id: number title: string items: { title: string link: string }[] }[] export const sceneLink: SceneLinkType = sceneLinkTemp