自然幢信息路由配置,结构规范
Showing
7 changed files
with
130 additions
and
1 deletions
| ... | @@ -63,7 +63,7 @@ const constantRoutes = [ | ... | @@ -63,7 +63,7 @@ const constantRoutes = [ |
| 63 | path: "/zrz", | 63 | path: "/zrz", |
| 64 | name: "自然幢", | 64 | name: "自然幢", |
| 65 | code: "1-1", | 65 | code: "1-1", |
| 66 | component: () => import("@/views/basic/zrz/index"), | 66 | component: () => import("@/views/systemZRZ/index"), |
| 67 | }, | 67 | }, |
| 68 | { | 68 | { |
| 69 | path: "/dz", | 69 | path: "/dz", | ... | ... |
src/views/systemZRZ/djb/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="">登记簿</div> | ||
| 3 | </template> | ||
| 4 | |||
| 5 | <script> | ||
| 6 | export default { | ||
| 7 | name:"", | ||
| 8 | components:{}, | ||
| 9 | props:{}, | ||
| 10 | data(){ | ||
| 11 | return { | ||
| 12 | } | ||
| 13 | }, | ||
| 14 | created(){}, | ||
| 15 | mounted(){}, | ||
| 16 | methods:{}, | ||
| 17 | computed: {}, | ||
| 18 | watch: {}, | ||
| 19 | } | ||
| 20 | </script> | ||
| 21 | <style scoped lang="less"> | ||
| 22 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | <template> | ||
| 2 | <div class="content_box"> | ||
| 3 | <el-tabs v-model="activeName" @tab-click="handleClick"> | ||
| 4 | <el-tab-pane label="自然幢信息" name="zrzxx"><zrzxx></zrzxx></el-tab-pane> | ||
| 5 | <el-tab-pane label="业主共有" name="yzgy"><yzgy></yzgy></el-tab-pane> | ||
| 6 | <el-tab-pane label="登记簿" name="djb"><djb></djb></el-tab-pane> | ||
| 7 | <el-tab-pane label="楼盘表" name="lpb"><lpb></lpb></el-tab-pane> | ||
| 8 | <el-tab-pane label="历史回溯" name="lshs"><lshs></lshs></el-tab-pane> | ||
| 9 | </el-tabs> | ||
| 10 | </div> | ||
| 11 | </template> | ||
| 12 | |||
| 13 | <script> | ||
| 14 | import zrzxx from "./zrzxx"; | ||
| 15 | import yzgy from "./yzgy"; | ||
| 16 | import djb from "./djb"; | ||
| 17 | import lpb from "./lpb"; | ||
| 18 | import lshs from "./lshs"; | ||
| 19 | export default { | ||
| 20 | name: "", | ||
| 21 | components: { | ||
| 22 | zrzxx,yzgy,djb,lpb,lshs | ||
| 23 | }, | ||
| 24 | props: {}, | ||
| 25 | data() { | ||
| 26 | return { | ||
| 27 | activeName: "zrzxx", | ||
| 28 | }; | ||
| 29 | }, | ||
| 30 | methods: { | ||
| 31 | handleClick(tab, event) { | ||
| 32 | console.log(tab, event); | ||
| 33 | }, | ||
| 34 | }, | ||
| 35 | created() {}, | ||
| 36 | mounted() {}, | ||
| 37 | computed: {}, | ||
| 38 | watch: {}, | ||
| 39 | }; | ||
| 40 | </script> | ||
| 41 | <style scoped lang="less"></style> | ... | ... |
src/views/systemZRZ/lpb/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="">楼盘表</div> | ||
| 3 | </template> | ||
| 4 | |||
| 5 | <script> | ||
| 6 | export default { | ||
| 7 | name:"", | ||
| 8 | components:{}, | ||
| 9 | props:{}, | ||
| 10 | data(){ | ||
| 11 | return { | ||
| 12 | } | ||
| 13 | }, | ||
| 14 | created(){}, | ||
| 15 | mounted(){}, | ||
| 16 | methods:{}, | ||
| 17 | computed: {}, | ||
| 18 | watch: {}, | ||
| 19 | } | ||
| 20 | </script> | ||
| 21 | <style scoped lang="less"> | ||
| 22 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
src/views/systemZRZ/lshs/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="">历史回溯</div> | ||
| 3 | </template> | ||
| 4 | |||
| 5 | <script> | ||
| 6 | export default { | ||
| 7 | name:"", | ||
| 8 | components:{}, | ||
| 9 | props:{}, | ||
| 10 | data(){ | ||
| 11 | return { | ||
| 12 | } | ||
| 13 | }, | ||
| 14 | created(){}, | ||
| 15 | mounted(){}, | ||
| 16 | methods:{}, | ||
| 17 | computed: {}, | ||
| 18 | watch: {}, | ||
| 19 | } | ||
| 20 | </script> | ||
| 21 | <style scoped lang="less"> | ||
| 22 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
src/views/systemZRZ/yzgy/index.vue
0 → 100644
| 1 | <template> | ||
| 2 | <div class="">业主共有</div> | ||
| 3 | </template> | ||
| 4 | |||
| 5 | <script> | ||
| 6 | export default { | ||
| 7 | name:"", | ||
| 8 | components:{}, | ||
| 9 | props:{}, | ||
| 10 | data(){ | ||
| 11 | return { | ||
| 12 | } | ||
| 13 | }, | ||
| 14 | created(){}, | ||
| 15 | mounted(){}, | ||
| 16 | methods:{}, | ||
| 17 | computed: {}, | ||
| 18 | watch: {}, | ||
| 19 | } | ||
| 20 | </script> | ||
| 21 | <style scoped lang="less"> | ||
| 22 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
src/views/systemZRZ/zrzxx/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment