1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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
|