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.

86 lines
2.6 KiB

5 years ago
<template>
<div style="padding-bottom: 50px">
5 years ago
<banner :show-page="showPage" />
5 years ago
<h-nav />
5 years ago
<div class="inner">
<bread-crumb :arr="arr" />
</div>
5 years ago
<div class="content-box">
5 years ago
<div
:key="index"
@click="jump(item.url)"
style="margin-top: 50px; cursor: pointer"
v-for="(item, index) in list"
>
<div class="d-flex justify-space-between" v-if="index % 2 === 0">
5 years ago
<div class="introduce-box">
<p class="introduce-title">{{ item.title }}</p>
<p class="introduce-content">{{ item.content }}</p>
</div>
5 years ago
<img :src="item.imgUrl" style="width: 452px" />
5 years ago
</div>
5 years ago
<div class="d-flex justify-space-between" v-else>
<img :src="item.imgUrl" style="width: 452px" />
5 years ago
<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>
5 years ago
import Banner from 'components/Banner/Banner.vue';
5 years ago
import HNav from './../components/HNav.vue';
5 years ago
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
5 years ago
export default {
name: 'News',
5 years ago
components: { HNav, Banner, BreadCrumb },
5 years ago
data() {
return {
str: '这是政策界面',
5 years ago
title: '创新资源平台',
typeOfPlatform: '创新平台',
arr: [
{ name: '创新平台', url: '/NewPlatform/NewCore' },
{ name: '创新资源平台', url: '' },
],
5 years ago
showPage: 32,
5 years ago
list: [
{
title: '科技资源开放共享服务平台',
5 years ago
content: '研发试验、检验检测、资源共享',
5 years ago
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
url: '/NewPlatform/Share',
},
{
title: '知识产权与技术转移转化服务平台',
5 years ago
content: '知识产权、成果转化、技术转移',
5 years ago
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/4f9b898da25e48d3b73b47345ed14a9a.jpg',
url: '/NewPlatform/Transfer',
},
{
5 years ago
title: '知识培训与科技人才服务平台',
5 years ago
content: '技术培训、管理培训、知识讲座',
5 years ago
imgUrl: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/f5fb570cfd7547279138a591818325e0.jpg',
url: '/NewPlatform/Develop',
},
],
};
},
methods: {
jump(url) {
this.$router.push(url);
},
},
};
</script>
5 years ago
<style lang="stylus" scoped>
.inner {
margin: 10px auto 15px;
}
</style>