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.

31 lines
536 B

<template>
<div>
<left-fixed :type="type" />
<!-- 创新政策界面 -->
<page :pageType="pageType" />
<sidebar :num="typeNum" />
</div>
</template>
<script>
import LeftFixed from '@/components/LeftFixed'
import Sidebar from '@/components/Sidebar'
import Page from '@/components/Page'
export default {
name: 'Policy',
components: { LeftFixed, Sidebar, Page },
data () {
return {
typeNum: 1,
type: 2,
pageType: 2
}
},
methods: {}
}
</script>
<style lang="scss" scoped>
</style>