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.
30 lines
534 B
30 lines
534 B
<template>
|
|
<div>
|
|
<div class="white">
|
|
<rich-text :title="title" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import RichText from 'components/Introduce/RichText.vue';
|
|
|
|
export default {
|
|
name: 'Introduce',
|
|
components: { RichText },
|
|
data() {
|
|
return {
|
|
title: '关于我们-组织机构',
|
|
showPage: 12,
|
|
arr: [
|
|
{ name: '关于我们', url: '/About/Introduce' },
|
|
{ name: '组织机构', url: '' },
|
|
],
|
|
};
|
|
},
|
|
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus" scoped></style>
|
|
|