|
@@ -4,49 +4,61 @@
|
|
|
<div class="magzines-wrapper" data-aria-viewport-area tabindex="0"
|
|
|
aria-label aria-description="You've reached the content area of the Magazines page, please use the tab key to go through the content."
|
|
|
>
|
|
|
- <div class="title">
|
|
|
+ <div class="title" tabindex="-1">
|
|
|
<img src="../../assets/images/Visit/pLeft.jpg" alt="" />
|
|
|
- <span>{{ $route.meta.nameAll }}</span>
|
|
|
+ <span tabindex="0">{{ $route.meta.nameAll }}</span>
|
|
|
<div class="xian"></div>
|
|
|
</div>
|
|
|
- <div class="conten">
|
|
|
+ <div class="conten" tabindex="-1">
|
|
|
<!-- 左侧 -->
|
|
|
<div class="menu">
|
|
|
<p
|
|
|
:class="{ cur: txtInd === index }"
|
|
|
v-for="(item, index) in txtData"
|
|
|
@click="txtInd = index"
|
|
|
+ @keydown.enter.passive="txtInd = index"
|
|
|
:key="index"
|
|
|
+ tabindex="0"
|
|
|
+ aria-label="Link"
|
|
|
>
|
|
|
{{ item.name }}<span v-show="txtInd === index"></span>
|
|
|
</p>
|
|
|
</div>
|
|
|
<!-- 右侧 -->
|
|
|
- <div class="rightTxt" v-html="txtData[txtInd].conten"></div>
|
|
|
+ <div class="rightTxt" v-html="txtData[txtInd].conten" tabindex="0"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="our-magzines-wrapper" data-aria-viewport-area tabindex="0"
|
|
|
aria-label aria-description="You've reached the Our Magazines section, please use the tab key to go through the content."
|
|
|
>
|
|
|
- <div class="title_2">Our Magazines</div>
|
|
|
+ <div class="title_2" tabindex="0">Our Magazines</div>
|
|
|
<!-- 下面书籍 -->
|
|
|
- <div class="tabTimeBox">
|
|
|
+ <div class="tabTimeBox" tabindex="-1">
|
|
|
<span
|
|
|
@mouseenter="dateInd = i"
|
|
|
+ @focus="dateInd = i"
|
|
|
:class="{ cur: i === dateInd }"
|
|
|
v-for="i in dateData"
|
|
|
:key="i"
|
|
|
- >{{ i }}</span
|
|
|
+ tabindex="0"
|
|
|
+ aria-label="Link"
|
|
|
>
|
|
|
+ {{ i }}
|
|
|
+ </span>
|
|
|
</div>
|
|
|
+ <ul class="imgList" tabindex="-1">
|
|
|
+ <li v-for="item in imgList" :key="item.id"
|
|
|
+ @click="jump(item.id)"
|
|
|
+ @keydown.enter.passive="jump(item.id)"
|
|
|
+ tabindex="0"
|
|
|
+ aria-label="Image link"
|
|
|
+ >
|
|
|
+ <div></div>
|
|
|
+ <img :src="item.imgUrl" alt="" />
|
|
|
+ <p v-html="item.p"></p>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
</div>
|
|
|
- <ul class="imgList">
|
|
|
- <li v-for="item in imgList" :key="item.id" @click="jump(item.id)">
|
|
|
- <div></div>
|
|
|
- <img :src="item.imgUrl" alt="" />
|
|
|
- <p v-html="item.p"></p>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
</div>
|
|
|
</template>
|
|
|
|