zhengkaixin 3 vuotta sitten
vanhempi
commit
32391dfab7

+ 1 - 0
.gitignore

@@ -22,3 +22,4 @@ pnpm-debug.log*
 *.njsproj
 *.sln
 *.sw?
+/node_modules/

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

@@ -4,6 +4,25 @@ const routesOther = [
 		path: '/other',
 		component: () => import('../views/Layout.vue'),
 		children: [
+			{
+				
+				path: 'energy',
+				component: () => import('../views/Layout.vue'),
+				children: [
+					{
+						path: 'info',
+						name: 'OtherEnergyInfo',
+						component: () => import('../views/Other/Energy/Info.vue'),
+						meta: {
+							requireAuth: false,
+							role: [],
+							title: '能源中心',
+						},
+					},
+				]
+			},
+			
+			
 			//返乡调查
 			{
 				path: 'return',

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

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