|
|
@ -7,15 +7,10 @@ |
|
|
|
<banner :show-page="showPage" /> |
|
|
|
<div class="inner ins-box"> |
|
|
|
<p class="font-bold-24 item-title">研究院介绍</p> |
|
|
|
<div>研究院介绍</div> |
|
|
|
<div>{{ direction }}</div> |
|
|
|
<p class="font-bold-24 item-title" v-if="list[0]">设备列表</p> |
|
|
|
<div class="d-flex flex-wrap" v-if="list[0]"> |
|
|
|
<div |
|
|
|
:class="(index + 1) % 4 === 0 ? 'margin-0' : ''" |
|
|
|
:key="index" |
|
|
|
class="item-box mb-8" |
|
|
|
v-for="(item, index) in list" |
|
|
|
> |
|
|
|
<div :class="(index + 1) % 4 === 0 ? 'margin-0' : ''" :key="index" class="item-box mb-8" v-for="(item, index) in list"> |
|
|
|
<img :src="item.visitLocation" style="height: 220px; width: 100%" /> |
|
|
|
<p class="font-24 my-4">{{ item.name }}</p> |
|
|
|
<p @click="jump(item.id)" class="font-16 baseColor item-more">了解更多→</p> |
|
|
@ -63,7 +58,7 @@ |
|
|
|
<div class="h-box" style="flex: 1">职称职务</div> |
|
|
|
<div class="h-box" style="flex: 1">研究方向</div> |
|
|
|
</div> |
|
|
|
<div v-if="obj.teamMemberList && obj.teamMemberList.length>0"> |
|
|
|
<div v-if="obj.teamMemberList && obj.teamMemberList.length > 0"> |
|
|
|
<div :key="index" class="d-flex" v-for="(item, index) in obj.teamMemberList"> |
|
|
|
<div class="con-box" style="flex: 1">{{ item.name }}</div> |
|
|
|
<div class="con-box" style="flex: 1"> |
|
|
@ -104,6 +99,7 @@ export default { |
|
|
|
], |
|
|
|
obj: null, |
|
|
|
list: [], |
|
|
|
direction: '', |
|
|
|
}; |
|
|
|
}, |
|
|
|
computed: mapState('home', ['LabId']), |
|
|
@ -114,6 +110,9 @@ export default { |
|
|
|
} else { |
|
|
|
this.id = this.LabId; |
|
|
|
} |
|
|
|
if (this.$route.params.direction) { |
|
|
|
this.direction = this.$route.params.direction; |
|
|
|
} |
|
|
|
this.getData(); |
|
|
|
this.getTeam(); |
|
|
|
}, |
|
|
|