|
@@ -4,14 +4,14 @@
|
|
|
<template v-if="currentRouteName=='gdmuseum'">
|
|
|
<img :src="`http://gdbwg.4dage.com${exData.thumb}`" alt="" />
|
|
|
<p class="title">{{ exData.name }}</p>
|
|
|
- <p v-if="exData.type!='long'" class="date">{{ exData.timeEnd }}</p>
|
|
|
+ <p v-if="exData.type!='long'" class="date">{{exData.timeStart}} 至 {{ exData.timeEnd }}</p>
|
|
|
</template>
|
|
|
|
|
|
<div v-else class="heng">
|
|
|
<div class="img" :style="{backgroundImage:`url(http://gdbwg.4dage.com${exData.thumb})`}"></div>
|
|
|
<div class="info">
|
|
|
<p class="title">{{ exData.name }}</p>
|
|
|
- <p v-if="exData.type!='long'" class="date">{{ exData.timeEnd }}</p>
|
|
|
+ <p v-if="exData.type!='long'" class="date">{{exData.timeStart}} 至 {{ exData.timeEnd }}</p>
|
|
|
<span class="type">{{exData.type=='long'?'常设展览':'临时展览'}}</span>
|
|
|
</div>
|
|
|
|