Ver Fonte

活动审批与注册审核

wgl há 4 anos atrás
pai
commit
a5d113abfc

+ 2 - 2
src/projects/business/router/common.js

@@ -123,8 +123,8 @@ const routesCommon = [
 						}
 					},
 				],
-			}
-
+			},
+			
 		],
 	}
 ]

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

@@ -794,9 +794,43 @@ const routesMaster = [
 							form: true
 						}
 					},
+					//注册审核
+					{
+						path: 'registerExamine',
+						name: 'MasterCompanyRegisterExamine',
+						component: () => import('../views/Master/Company/RegisterExamine.vue'),
+						meta: {
+							requireAuth: false,
+							role: [],
+							title: '注册审核',
+							mode: true
+						}
+					},
 				]
 			},
 
+
+			//活动
+			{
+				path: 'activity',
+				component: () => import('../views/Layout.vue'),
+				children: [
+					//活动审批
+					{
+						path: 'examineList',
+						name: 'MasterActivityExamine',
+						component: () => import('@/views/Master/Activity/ExamineList.vue'),
+						meta: {
+							requireAuth: true,
+							role: [],
+							title: '活动审批',
+							mode: true
+						}
+					},
+				],
+			}
+
+
 		],
 	},
 ]

+ 8 - 0
src/projects/business/views/Master/Activity/ExamineList.vue

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

+ 8 - 0
src/projects/business/views/Master/Company/RegisterExamine.vue

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

+ 3 - 3
src/projects/home/views/Register/Business/Step1.vue

@@ -1,6 +1,6 @@
 <template>
-<div>
-   <header class="mui-bar mui-bar-nav">
+	<div>
+		<header class="mui-bar mui-bar-nav">
 			<h1 class="mui-title">注册</h1>
 			<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
 		</header>
@@ -25,7 +25,7 @@
 				</form>
 			</div>
 		</div>
-</div>
+	</div>
 </template>
 
 <script>