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