123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <template>
- <div class="Visit4" data-aria-viewport-area tabindex="0"
- aria-label aria-description="You have reached the content area under the Audio Guide & Tour page. To browse the content, use the tab key."
- >
- <div class="conten">
- <div class="row">
- <div>
- <h3 tabindex="0">Audio Guide</h3>
- <p tabindex="0">
- The museum offers free audio guide.</p>
- <p tabindex="0">Visitors can get the devices from the audio guide cabinets with 200 RMB refundable deposit.</p>
- <p tabindex="0">The cabinets can be found at several locations in the museum, such as the east of the main entrance.</p>
- <p tabindex="0">The service is available in Chinese and English.</p>
- <p tabindex="0">For further questions, please visit the information desk for help.</p>
- </p>
- </div>
- <div>
- <img src="../../assets/images/Visit/Audio1.jpg" alt="Audio Guide"
- tabindex="0"
- aria-description="Audio Guide"
- >
- </div>
- </div>
- <div class="row">
- <div>
- <img src="../../assets/images/Visit/Audio2.jpg" alt="Free Commentary Service"
- tabindex="0"
- aria-description="Free Commentary Service"
- >
- </div>
- <div class="blank">
- <h3 tabindex="0">Free Commentary Service</h3>
- <p tabindex="0">
- Commentators provide free services on each open day (Tuesday to Sunday).
- </p>
- <p tabindex="0">
- Please check the specific time and exhibition location in the museum on the day of your visit.
- </p>
- </div>
- </div>
- <div class="row">
- <div>
- <h3 tabindex="0">Volunteer Guide</h3>
- <p tabindex="0">Our museum volunteers offer free explanations and help. </p>
- </div>
- <div>
- <img src="../../assets/images/Visit/Audio3.jpg" alt="Volunteer Guide"
- tabindex="0"
- aria-description="Volunteer Guide"
- >
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "Visit4",
- components: {},
- data() {
- //这里存放数据
- return {};
- },
- //监听属性 类似于data概念
- computed: {},
- //监控data中的数据变化
- watch: {},
- //方法集合
- methods: {},
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- 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.`)
- },
- beforeCreate() {}, //生命周期 - 创建之前
- beforeMount() {}, //生命周期 - 挂载之前
- beforeUpdate() {}, //生命周期 - 更新之前
- updated() {}, //生命周期 - 更新之后
- beforeDestroy() {}, //生命周期 - 销毁之前
- destroyed() {}, //生命周期 - 销毁完成
- activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='less' scoped>
- .Visit4{
- .conten{
- color: #000;
- width: 1200px;
- font-size: 18px;
- line-height: 26px;
- margin: auto;
- .row{
- width: 866px;
- display: flex;
- &>div{
- width: 50%;
- &>h3{
- padding-top: 30px;
- font-size: 18px;
- font-weight: 700;
- margin-bottom: 20px;
- }
- &>p{
- font-size: 14px;
- }
- &>img{
- width: 100%;
- }
- }
- .blank{
- padding-left: 10px;
- }
- }
- }
- }
- </style>
|