From c1b885e5ada172a7303d36cfba3cb313c28ae61b Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Sat, 24 May 2025 11:19:40 +0800
Subject: [PATCH] 1

---
 src/router/router.js |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/src/router/router.js b/src/router/router.js
index eec2309..05b43f1 100644
--- a/src/router/router.js
+++ b/src/router/router.js
@@ -27,6 +27,13 @@
       component: () =>
         import(/* webpackChunkName: "Home" */ /* webpackPrefetch: true */ "@/page/quotes.vue"),
     },
+	{
+	  path: "/transfer",
+	  name: "Transfer",
+	  meta: { index: 2,  keepAlive: true },
+	  component: () =>
+	    import(/* webpackChunkName: "Home" */ /* webpackPrefetch: true */ "@/page/transfer.vue"),
+	},
     {
       path: "/funds",
       name: "Funds",
@@ -131,6 +138,21 @@
               /* webpackChunkName: "SecurityVerification" */ /* webpackPrefetch: true */"@/page/withdraw/withdrawalSecurityVerification"
         ),
     },
+	{
+	  //提现申请密码验证
+	  path: "/withdraw/securityVerification_zh",
+	  name: "SecurityVerification_zh",
+	  meta: { index: 10 },
+	  props(route) {
+	    return {
+	      ...route.query
+	    }
+	  },
+	  component: () =>
+	    import(
+	          /* webpackChunkName: "SecurityVerification" */ /* webpackPrefetch: true */"@/page/withdraw/withdrawalSecurityVerification_huazhuan"
+	    ),
+	},
     {
       //提现详情
       path: "/withdraw/withdrawDetail",

--
Gitblit v1.9.3