|
@@ -1,18 +1,32 @@
|
|
|
<!-- -->
|
|
|
<template>
|
|
|
<div class="JoinSupport">
|
|
|
- <div class="ban" data-aria-viewport-area tabindex="0"
|
|
|
- aria-label :aria-description="`You've reached the banner area of the ${$route.meta.nameAll} page; this area has one image; please use the tab key to go through the content.`"
|
|
|
- ></div>
|
|
|
+ <div class="banWrapper"
|
|
|
+ data-aria-viewport-area
|
|
|
+ tabindex="0"
|
|
|
+ aria-label
|
|
|
+ :aria-description="`You've reached the banner area of the ${$route.meta.nameAll} page; this area has one image; please use the tab key to go through the content.`"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="ban"
|
|
|
+ tabindex="0"
|
|
|
+ aria-label="Image"
|
|
|
+ :aria-description="$route.meta.nameAll"
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
<div class="nav_2" data-aria-viewport-area tabindex="0"
|
|
|
aria-label aria-description="You've reached the secondary menu of the Join & Support section; this menu has two options; please use the tab key to go through the menu."
|
|
|
>
|
|
|
- <ul>
|
|
|
+ <ul tabindex="-1">
|
|
|
<li
|
|
|
:class="{ cur: $route.meta.nameAll === item.url }"
|
|
|
v-for="(item, index) in topLi"
|
|
|
:key="index"
|
|
|
@click="skip(item.url)"
|
|
|
+ @keydown.enter.passive="skip(item.url)"
|
|
|
+ tabindex="0"
|
|
|
+ aria-label="Link"
|
|
|
+ :aria-description="item.name"
|
|
|
>
|
|
|
<img
|
|
|
:src="`/data/JoinSupport/${item.img}`"
|
|
@@ -25,10 +39,28 @@
|
|
|
<div class="pos" data-aria-viewport-area tabindex="0"
|
|
|
aria-label aria-description="You've reached the path area, this area has three URLs; please use the tab key to navigate through the content."
|
|
|
>
|
|
|
- <span class="pos1">Your Position: </span>
|
|
|
- <Router-link to="/Layout/Home">Home></Router-link>
|
|
|
- <Router-link to="/Layout/JoinSupport/Volunteer">Join & Support ></Router-link>
|
|
|
- <Router-link :to="`/Layout/JoinSupport/${$route.meta.nameAll}`">{{'Ways to '+$route.meta.nameAll}} ></Router-link>
|
|
|
+ <span class="pos1" tabindex="0">Your Position: </span>
|
|
|
+ <Router-link
|
|
|
+ to="/Layout/Home"
|
|
|
+ tabindex="0"
|
|
|
+ aria-description="Home"
|
|
|
+ >
|
|
|
+ Home>
|
|
|
+ </Router-link>
|
|
|
+ <Router-link
|
|
|
+ to="/Layout/JoinSupport/Volunteer"
|
|
|
+ tabindex="0"
|
|
|
+ aria-description="Join & Support"
|
|
|
+ >
|
|
|
+ Join & Support>
|
|
|
+ </Router-link>
|
|
|
+ <Router-link
|
|
|
+ :to="`/Layout/JoinSupport/${$route.meta.nameAll}`"
|
|
|
+ tabindex="0"
|
|
|
+ :aria-description="'Ways to '+$route.meta.nameAll"
|
|
|
+ >
|
|
|
+ {{'Ways to '+$route.meta.nameAll}}>
|
|
|
+ </Router-link>
|
|
|
</div>
|
|
|
<!-- 二级嵌套路由 -->
|
|
|
<Router-view />
|