| @@ -0,0 +1,39 @@ | |||||
| <template> | |||||
| <div class="home_wrapper"> | |||||
| <header-nav | |||||
| :headings="headingsTitle" | |||||
| :currentNav="1" | |||||
| returnUrl="/sunVillage/index" | |||||
| ></header-nav> | |||||
| <projectNav :serialTag="3"></projectNav> | |||||
| <div class=""></div> | |||||
| </div> | |||||
| </template> | |||||
| <style scoped lang="scss"> | |||||
| .home_wrapper { | |||||
| width: 100%; | |||||
| min-height: 100vh; | |||||
| background: #fff; | |||||
| } | |||||
| </style> | |||||
| <script> | |||||
| import headerNav from "@/components/sunVillage/common/header.vue"; | |||||
| import projectNav from "@/components/sunVillage/injoint/nav"; | |||||
| export default { | |||||
| name: "sunVillageInjoint", | |||||
| components: { headerNav, projectNav }, | |||||
| data() { | |||||
| return { | |||||
| headingsTitle: "三资公开", | |||||
| }; | |||||
| }, | |||||
| mounted() {}, | |||||
| methods: { | |||||
| skip(url) { | |||||
| this.$router.push(url); | |||||
| }, | |||||
| }, | |||||
| }; | |||||
| </script> | |||||