wgl 4 лет назад
Родитель
Сommit
bdac272d6b
2 измененных файлов с 19 добавлено и 0 удалено
  1. 11 0
      src/projects/business/router/index.js
  2. 8 0
      src/projects/business/views/Control.vue

+ 11 - 0
src/projects/business/router/index.js

@@ -22,6 +22,17 @@ const routesIndex = [
 			title: '首页',
 		}
 	},
+	//监管监测页面
+	{
+		path: '/control',
+		name: 'Control',
+		component: () => import('../views/Control.vue'),
+		meta: {
+			requireAuth: true,
+			role: [],
+			title: '监管监测页面',
+		}
+	},
 ]
 
 const routes = routesIndex.concat(routesCommon, routesGuest, routesMaster);

+ 8 - 0
src/projects/business/views/Control.vue

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