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.

42 lines
923 B

5 years ago
<template>
<div>
<h-nav />
5 years ago
<div class="inner my-1">
5 years ago
<bread-crumb :arr="arr" />
5 years ago
</div>
5 years ago
<div class="inner">
<div>
5 years ago
<partner-ship :title="title" :type-of-platform="typeOfPlatform" />
</div>
</div>
</div>
</template>
<script>
import { mapState, mapMutations, mapActions } from 'vuex';
import HNav from './../components/HNav.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
import PartnerShip from 'components/Introduce/PartnerShip.vue';
export default {
name: 'Partner',
components: { HNav, BreadCrumb, PartnerShip },
data() {
return {
title: '合作伙伴',
typeOfPlatform: '孵化平台',
arr: [
{ name: '孵化平台', url: '/IncubationPlatform/MakerSpace' },
5 years ago
{ name: '第三方专业机构', url: '' },
5 years ago
],
};
},
};
</script>
<style lang="stylus" scoped>
.inner {
5 years ago
margin: 20px auto;
}
5 years ago
</style>