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.
37 lines
823 B
37 lines
823 B
<template>
|
|
<div>
|
|
<h-nav />
|
|
<div class="inner my-1">
|
|
<bread-crumb :arr="arr" />
|
|
</div>
|
|
<div>
|
|
<derive-enterprise :title="title" :type-of-platform="typeOfPlatform" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HNav from './components/HNav.vue';
|
|
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
|
|
import DeriveEnterprise from 'components/Introduce/DeriveEnterprise.vue';
|
|
export default {
|
|
name: 'Enterprise',
|
|
components: { HNav, BreadCrumb, DeriveEnterprise },
|
|
data() {
|
|
return {
|
|
title: '衍生企业',
|
|
typeOfPlatform: '产业社区',
|
|
arr: [
|
|
{ name: '产业社区', url: '/Industry/Union' },
|
|
{ name: '衍生企业', url: '' },
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.inner {
|
|
margin: 10px auto 15px;
|
|
}
|
|
</style>
|
|
|