diff --git a/src/前端/walktofree/src/pages/test.vue b/src/前端/walktofree/src/pages/test.vue
new file mode 100644
index 0000000..02409e3
--- /dev/null
+++ b/src/前端/walktofree/src/pages/test.vue
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/前端/walktofree/src/router/index.js b/src/前端/walktofree/src/router/index.js
index d3cad07..afc07c4 100644
--- a/src/前端/walktofree/src/router/index.js
+++ b/src/前端/walktofree/src/router/index.js
@@ -4,9 +4,13 @@ import Register from '../pages/Register.vue';
import Home from '../pages/HomePage.vue';
import Mine from '../pages/mine.vue';
import SearchPage from '../pages/searchPage.vue';
-import AddDemand from '../pages/addDemand.vue';
import Test from '../pages/test.vue'
import Communication from '../pages/Communication.vue'
+import Pay from "@/pages/Pay.vue";
+import addDemand from "@/pages/addDemand.vue";
+import DemandList from "@/pages/DemandList.vue";
+import Evaluation from "@/pages/Evaluation.vue";
+import SecurityVerification from "@/pages/SecurityVerification.vue";
const routes = [
{ path: '/', redirect: '/login' }, // 重定向到/login路径
@@ -15,9 +19,13 @@ const routes = [
{ path: '/home', component: Home },
{ path: '/mine', component: Mine },
{ path: '/searchPage', component: SearchPage },
- { path: '/addDemandPage', component: AddDemand },
+ { path: '/addDemandPage', component: addDemand },
{ path: '/test', component: Test },
{ path: '/message', component: Communication },
+ { path: '/pay', component:Pay},
+ { path: '/demandlist', component:DemandList},
+ { path: '/evaluation', component:Evaluation},
+ { path: '/SecurityVerification', component:SecurityVerification}
];
const router = createRouter({