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

5 years ago
<!--
Copyright (c) 2020.
author: bin
email: binbin0314@126.com
-->
5 years ago
<template>
5 years ago
<div class="inner">
<bread-crumb :arr="arr" />
<policy-list class="py-5 my-5" />
5 years ago
<!-- <policy-details v-else/> -->
</div>
</template>
<script>
5 years ago
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
5 years ago
import PolicyList from './components/PolicyList.vue';
export default {
name: 'Policy',
5 years ago
components: {
5 years ago
BreadCrumb,
5 years ago
PolicyList,
// PolicyDetails,
},
data() {
return {
5 years ago
showType: 1,
list: [],
5 years ago
arr: [{ name: '创新政策', url: '' }],
5 years ago
};
},
5 years ago
methods: {},
};
</script>
5 years ago
<style scoped lang="stylus">
5 years ago
.inner {
margin: 40px auto;
5 years ago
}
</style>