Visit4.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <div class="Visit4" data-aria-viewport-area tabindex="0"
  3. aria-label aria-description="You have reached the content area under the Audio Guide & Tour page. To browse the content, use the tab key."
  4. >
  5. <div class="conten">
  6. <div class="row">
  7. <div>
  8. <h3 tabindex="0">Audio Guide</h3>
  9. <p tabindex="0">
  10. The museum offers free audio guide.</p>
  11. <p tabindex="0">Visitors can get the devices from the audio guide cabinets with 200 RMB refundable deposit.</p>
  12. <p tabindex="0">The cabinets can be found at several locations in the museum, such as the east of the main entrance.</p>
  13. <p tabindex="0">The service is available in Chinese and English.</p>
  14. <p tabindex="0">For further questions, please visit the information desk for help.</p>
  15. </p>
  16. </div>
  17. <div>
  18. <img src="../../assets/images/Visit/Audio1.jpg" alt="Audio Guide"
  19. tabindex="0"
  20. aria-description="Audio Guide"
  21. >
  22. </div>
  23. </div>
  24. <div class="row">
  25. <div>
  26. <img src="../../assets/images/Visit/Audio2.jpg" alt="Free Commentary Service"
  27. tabindex="0"
  28. aria-description="Free Commentary Service"
  29. >
  30. </div>
  31. <div class="blank">
  32. <h3 tabindex="0">Free Commentary Service</h3>
  33. <p tabindex="0">
  34. Commentators provide free services on each open day (Tuesday to Sunday).
  35. </p>
  36. <p tabindex="0">
  37. Please check the specific time and exhibition location in the museum on the day of your visit.
  38. </p>
  39. </div>
  40. </div>
  41. <div class="row">
  42. <div>
  43. <h3 tabindex="0">Volunteer Guide</h3>
  44. <p tabindex="0">Our museum volunteers offer free explanations and help. </p>
  45. </div>
  46. <div>
  47. <img src="../../assets/images/Visit/Audio3.jpg" alt="Volunteer Guide"
  48. tabindex="0"
  49. aria-description="Volunteer Guide"
  50. >
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. export default {
  58. name: "Visit4",
  59. components: {},
  60. data() {
  61. //这里存放数据
  62. return {};
  63. },
  64. //监听属性 类似于data概念
  65. computed: {},
  66. //监控data中的数据变化
  67. watch: {},
  68. //方法集合
  69. methods: {},
  70. //生命周期 - 创建完成(可以访问当前this实例)
  71. created() {},
  72. //生命周期 - 挂载完成(可以访问DOM元素)
  73. mounted() {
  74. this.$eventBus.$emit('request-read', `You have reached the Audio Guide & Tour page under the Visit section. This page includes one navigation section, six window sections, and one interactive section. To choose a section, please hit the shortcut key.`)
  75. },
  76. beforeCreate() {}, //生命周期 - 创建之前
  77. beforeMount() {}, //生命周期 - 挂载之前
  78. beforeUpdate() {}, //生命周期 - 更新之前
  79. updated() {}, //生命周期 - 更新之后
  80. beforeDestroy() {}, //生命周期 - 销毁之前
  81. destroyed() {}, //生命周期 - 销毁完成
  82. activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
  83. };
  84. </script>
  85. <style lang='less' scoped>
  86. .Visit4{
  87. .conten{
  88. color: #000;
  89. width: 1200px;
  90. font-size: 18px;
  91. line-height: 26px;
  92. margin: auto;
  93. .row{
  94. width: 866px;
  95. display: flex;
  96. &>div{
  97. width: 50%;
  98. &>h3{
  99. padding-top: 30px;
  100. font-size: 18px;
  101. font-weight: 700;
  102. margin-bottom: 20px;
  103. }
  104. &>p{
  105. font-size: 14px;
  106. }
  107. &>img{
  108. width: 100%;
  109. }
  110. }
  111. .blank{
  112. padding-left: 10px;
  113. }
  114. }
  115. }
  116. }
  117. </style>