forked from TALL/check-work
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.
41 lines
900 B
41 lines
900 B
<template>
|
|
<div>
|
|
<h-nav />
|
|
<div class="inner my-1">
|
|
<bread-crumb :arr="arr" />
|
|
</div>
|
|
<div class="inner">
|
|
<div>
|
|
<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: '/About/Introduce' },
|
|
{ name: '合作伙伴', url: '' },
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.inner {
|
|
margin: 20px auto;
|
|
}
|
|
</style>
|
|
|