data.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. const sceneLinkTemp = [
  2. {
  3. id: 1,
  4. title: 'A馆',
  5. items: [
  6. {
  7. title: 'AC馆',
  8. link: 'SG-r5DtdswkZ49'
  9. },
  10. {
  11. title: 'A馆一楼',
  12. link: 'SG-3gCcPDkuBox'
  13. },
  14. {
  15. title: 'A馆二楼',
  16. link: 'SG-ryBEFpjTbxB'
  17. }
  18. ]
  19. },
  20. {
  21. id: 2,
  22. title: 'B馆',
  23. items: [
  24. {
  25. title: 'BD馆',
  26. link: 'SG-nFe1LNF3kpy'
  27. },
  28. {
  29. title: 'B1馆',
  30. link: 'SG-OOJPFzY5ZFz'
  31. },
  32. {
  33. title: 'B2馆',
  34. link: 'SG-9ZztEoyICcV'
  35. },
  36. {
  37. title: 'B馆中央大厅',
  38. link: 'SG-tVtpwYiqvaf'
  39. }
  40. ]
  41. },
  42. {
  43. id: 3,
  44. title: 'C馆',
  45. items: [
  46. {
  47. title: 'C馆',
  48. link: 'SG-goZny7WUC1o'
  49. }
  50. ]
  51. },
  52. {
  53. id: 4,
  54. title: 'D馆',
  55. items: [
  56. {
  57. title: 'D馆',
  58. link: 'SG-nFe1LNF3kpy'
  59. },
  60. {
  61. title: 'D馆会议中心',
  62. link: 'SG-vL4jGsIw63c'
  63. }
  64. ]
  65. }
  66. ]
  67. type SceneLinkType = {
  68. id: number
  69. title: string
  70. items: {
  71. title: string
  72. link: string
  73. }[]
  74. }[]
  75. export const sceneLink: SceneLinkType = sceneLinkTemp