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
848 B

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