第一版绿谷官网
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.
 
 
 
 

47 lines
933 B

<!--
* @Author: wally
* @email: 18603454788@163.com
* @Date: 2021-01-13 17:21:29
* @LastEditors: wally
* @LastEditTime: 2021-01-20 09:56:56
-->
<template>
<div>
<h-nav />
<div class="inner my-1">
<bread-crumb :arr="arr" />
</div>
<div style="padding-bottom: 50px">
<community />
</div>
</div>
</template>
<script>
import HNav from './../components/HNav.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
import Community from '../../Community/Community.vue';
export default {
name: 'News',
components: { HNav, BreadCrumb, Community },
data() {
return {
typeOfPlatform: '创新社区',
arr: [
{ name: '创新社区', url: '/NewPlatform/NewCore' },
{ name: '交流社区', url: '' },
],
btnType: 'default',
};
},
methods: {},
};
</script>
<style lang="stylus" scoped>
.inner {
margin: 10px auto 15px;
}
</style>