forked from TALL/check-work
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.9 KiB
72 lines
2.9 KiB
5 years ago
|
<template>
|
||
|
<div style="padding-bottom: 50px">
|
||
|
<rotation />
|
||
|
<h-nav />
|
||
|
<div class="content-box">
|
||
|
<div v-for="(item, index) in list" :key="index" style="margin-top: 50px; cursor: pointer" @click="jump(item.url)">
|
||
|
<div v-if="index % 2 === 0" class="d-flex justify-space-between">
|
||
|
<div class="introduce-box">
|
||
|
<p class="introduce-title">{{ item.title }}</p>
|
||
|
<p class="introduce-content">{{ item.content }}</p>
|
||
|
</div>
|
||
|
<img style="width: 452px" :src="item.imgUrl" />
|
||
|
</div>
|
||
|
<div v-else class="d-flex justify-space-between">
|
||
|
<img style="width: 452px" :src="item.imgUrl" />
|
||
|
<div class="introduce-box">
|
||
|
<p class="introduce-title">{{ item.title }}</p>
|
||
|
<p class="introduce-content">{{ item.content }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Rotation from 'components/Rotation/Rotation.vue';
|
||
|
import HNav from './../components/HNav.vue';
|
||
|
export default {
|
||
|
name: 'News',
|
||
|
components: { HNav, Rotation },
|
||
|
data() {
|
||
|
return {
|
||
|
str: '这是政策界面',
|
||
|
list: [
|
||
|
{
|
||
|
title: '科技资源开放共享服务平台',
|
||
|
content:
|
||
|
'山西绿谷生物科技股份有限公司立足功能食品、生物医药和大健康产业,聚焦“创新”、聚力“孵化”、聚合“产业”,' +
|
||
|
'致力建设集创新链、孵化链和产业链为一体,产学研协同、多学科交叉、大中小企业...',
|
||
|
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
|
||
|
url: '/NewPlatform/Share',
|
||
|
},
|
||
|
{
|
||
|
title: '知识产权与技术转移转化服务平台',
|
||
|
content:
|
||
|
'山西绿谷生物科技股份有限公司立足功能食品、生物医药和大健康产业,聚焦“创新”、聚力“孵化”、聚合“产业”,' +
|
||
|
'致力建设集创新链、孵化链和产业链为一体,产学研协同、多学科交叉、大中小企业...',
|
||
|
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/4f9b898da25e48d3b73b47345ed14a9a.jpg',
|
||
|
url: '/NewPlatform/Transfer',
|
||
|
},
|
||
|
{
|
||
|
title: '资源开发利用平台',
|
||
|
content:
|
||
|
'山西绿谷生物科技股份有限公司立足功能食品、生物医药和大健康产业,聚焦“创新”、聚力“孵化”、聚合“产业”,' +
|
||
|
'致力建设集创新链、孵化链和产业链为一体,产学研协同、多学科交叉、大中小企业...',
|
||
|
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/f5fb570cfd7547279138a591818325e0.jpg',
|
||
|
url: '/NewPlatform/Develop',
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
jump(url) {
|
||
|
this.$router.push(url);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped></style>
|