Browse Source

管理列表与详情

wgl 4 years ago
parent
commit
aaff735660

+ 22 - 0
src/projects/business/router/other.js

@@ -20,6 +20,28 @@ const routesOther = [
 							title: '返乡调查问卷',
 						},
 					},
+					//返乡调查管理列表
+					{
+						path: 'list',
+						name: 'OtherReturnList',
+						component: () => import('../views/Other/Return/List.vue'),
+						meta: {
+							requireAuth: true,
+							role: [],
+							title: '返乡调查管理列表',
+						},
+					},
+					//返乡调查管理详情
+					{
+						path: 'info',
+						name: 'OtherReturnInfo',
+						component: () => import('../views/Other/Return/Info.vue'),
+						meta: {
+							requireAuth: true,
+							role: [],
+							title: '返乡调查管理详情',
+						},
+					},
 				]
 			},
 		],

+ 8 - 0
src/projects/business/views/Other/Return/Info.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/projects/business/views/Other/Return/List.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>