Ver Fonte

疫情上报列表和详情

wgl há 4 anos atrás
pai
commit
55ce6bd5dd

+ 23 - 0
src/projects/business/router/master.js

@@ -809,9 +809,32 @@ const routesMaster = [
 							requireAuth: true,
 							role: [],
 							title: '疫情上报',
+							form: true
+						}
+					},
+					//疫情上报列表
+					{
+						path: 'reportList',
+						name: 'MasterHealthReportList',
+						component: () => import('../views/Master/Health/ReportList.vue'),
+						meta: {
+							requireAuth: true,
+							role: [],
+							title: '疫情上报列表',
 							mode: true
 						}
 					},
+					//疫情上报详情
+					{
+						path: 'reportInfo',
+						name: 'MasterHealthReportInfo',
+						component: () => import('../views/Master/Health/ReportInfo.vue'),
+						meta: {
+							requireAuth: false,
+							role: [],
+							title: '疫情上报详情',
+						}
+					},
 					//健康档案
 					{
 						path: 'archives',

+ 8 - 0
src/projects/business/views/Master/Health/ReportInfo.vue

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

+ 8 - 0
src/projects/business/views/Master/Health/ReportList.vue

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