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

46 lines
848 B

<template>
<div>
<sen-nav />
<div class="inner">
<bread-crumb :arr="arr" />
</div>
<div class="dev-box">
<img src="~assets/build.png" />
</div>
</div>
</template>
<script>
import SenNav from './components/SenNav.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
export default {
name: 'Develop',
components: { SenNav, BreadCrumb },
data() {
return {
title: '创新服务',
typeOfPlatform: '创新平台',
arr: [
{ name: '创新平台', url: '/NewPlatform/NewCore' },
{ name: '创新资源平台', url: '/NewPlatform/News' },
{ name: '创新服务', url: '' },
],
list: [],
};
},
};
</script>
<style lang="stylus" scoped>
.inner {
margin: 20px auto;
}
.dev-box {
width: 100%;
img {
width: 100%;
}
}
</style>