|
@@ -3,18 +3,21 @@
|
|
|
<div class="Publications2" data-aria-viewport-area tabindex="0"
|
|
|
aria-label aria-description="You've reached the content area of the Exhibition Catalogues 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 tabindex="0">{{ $route.meta.nameAll }}</span>
|
|
|
<div class="xian"></div>
|
|
|
</div>
|
|
|
- <div class="conten" >
|
|
|
+ <div class="conten" tabindex="-1">
|
|
|
<img src="/data/Publications/heng.png" alt="" />
|
|
|
<ul>
|
|
|
<li v-for="(item, index) in list" :key="index">
|
|
|
- <img :src="`/data/Publications/Exhibition/${index + 1}.jpg`" alt="" />
|
|
|
- <div class="show" tabindex="0">
|
|
|
- <a :href="item" target="_blank" tabindex="0">
|
|
|
+ <img :src="`/data/Publications/Exhibition/${index + 1}.jpg`" alt=""
|
|
|
+ tabindex="0"
|
|
|
+ :aria-description="item.title"
|
|
|
+ />
|
|
|
+ <div class="show">
|
|
|
+ <a :href="item.url" target="_blank" tabindex="0">
|
|
|
<img src="/data/Publications/Exhibition/href.png" />
|
|
|
<p>Click here to open the catalogue</p>
|
|
|
</a>
|
|
@@ -36,12 +39,30 @@ export default {
|
|
|
//这里存放数据
|
|
|
return {
|
|
|
list: [
|
|
|
- "http://download.china.cn/idc/pdf/A_brief_history_of_Beijing.pdf",
|
|
|
- "http://images.china.cn/images1/en/pdf/Geneva.pdf",
|
|
|
- "http://download.china.cn/idc/pdf/Renaissance.pdf",
|
|
|
- "http://download.china.cn/idc/pdf/TheMetropolisesandtheProsperities.pdf",
|
|
|
- "http://images.china.cn/images1/en/pdf/Andes.pdf",
|
|
|
- "http://images.china.cn/images1/en/pdf/smileofkhmer.pdf",
|
|
|
+ {
|
|
|
+ url: "http://download.china.cn/idc/pdf/A_brief_history_of_Beijing.pdf",
|
|
|
+ title: 'A Brief History of Beijing',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: "http://images.china.cn/images1/en/pdf/Geneva.pdf",
|
|
|
+ title: 'Geneva at the Heart of Time – Origin of Swiss Watchmaking Culture',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: "http://download.china.cn/idc/pdf/Renaissance.pdf",
|
|
|
+ title: 'Art, Culture and Daily Life in Renaissance Italy',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: "http://download.china.cn/idc/pdf/TheMetropolisesandtheProsperities.pdf",
|
|
|
+ title: 'The Metropolises and the Prosperities within — Tokyo and Beijing in the 18th Century',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: "http://images.china.cn/images1/en/pdf/Andes.pdf",
|
|
|
+ title: 'ANCIENT CIVILIZATION OF THE ANDES',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: "http://images.china.cn/images1/en/pdf/smileofkhmer.pdf",
|
|
|
+ title: 'Smile of Khmer: Cambodian Ancient Cultural Relics and Arts',
|
|
|
+ },
|
|
|
],
|
|
|
};
|
|
|
},
|