sunChengjie 11 mesiacov pred
rodič
commit
b02d5dfb3e

+ 1 - 1
src/pages/components/HomePage.vue

@@ -21,7 +21,7 @@
 					</router-link>
 				</div>
 				<div class="icon-box">
-					<router-link to="Pjpc">
+					<router-link to="Removal">
 						<div style="">
 							<img src="@/assets/user/u35.png" alt="">
 						</div>

+ 1 - 2
src/pages/email.vue

@@ -1,7 +1,6 @@
 <template>
 	<div>
-		<van-tabbar v-model="active" active-color="#1f1f1f" inactive-color="inactive-color"
-			style="background-color: #aaaaaa; ">
+		<van-tabbar v-model="active">
 			<van-tabbar-item>首页</van-tabbar-item>
 			<van-tabbar-item>我的</van-tabbar-item>
 		</van-tabbar>

+ 14 - 0
src/pages/new/removal.vue

@@ -0,0 +1,14 @@
+<template>
+    <div class="container">Removal</div>
+</template>
+
+<script>
+export default {
+    name: 'Removal',
+    data() {
+        return {};
+    },
+  
+};
+</script>
+

+ 14 - 5
src/router/index.js

@@ -5,7 +5,8 @@ import Sysearch from '@/pages/sysearch'
 import Kjsearchinfo from '@/pages/kjsearchinfo'
 import Jjsearch from '@/pages/jjsearch'
 import Sjdj from '@/pages/sjdj'
-import storage from '@/pages/new/storage'
+import Storage from '@/pages/new/storage'
+import Removal from '@/pages/new/removal'
 import Addper from '@/pages/addper'
 import Box from '@/pages/box'
 import Pjpc from '@/pages/pjpc'
@@ -126,10 +127,18 @@ export default new Router({
 				needLogin: true //需要加校检判断的路由
 			}
 		},
-		{ //收件登记
-			path: '/storage',
-			name: 'storage',
-			component: storage,
+		{ //快件入库
+			path: '/Storage',
+			name: 'Storage',
+			component: Storage,
+			meta: {
+				needLogin: true //需要加校检判断的路由
+			}
+		},
+		{ //快件出库
+			path: '/Removal',
+			name: 'Removal',
+			component: Removal,
 			meta: {
 				needLogin: true //需要加校检判断的路由
 			}