From 4a7c769cf9fffbe84f3258ee0a6bce30e09a7882 Mon Sep 17 00:00:00 2001 From: lcc <805383944@qq.com> Date: Thu, 17 Jul 2025 11:25:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=BB=91=E5=AE=9A=E9=93=B6?= =?UTF-8?q?=E8=A1=8C=E5=8D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/MyBank.vue | 365 +++++++++++++++++++++++++++++++++++++++++++ src/router/index.js | 2 + 2 files changed, 367 insertions(+) create mode 100644 src/pages/MyBank.vue diff --git a/src/pages/MyBank.vue b/src/pages/MyBank.vue new file mode 100644 index 0000000..5ea01a7 --- /dev/null +++ b/src/pages/MyBank.vue @@ -0,0 +1,365 @@ + + + + + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 27c5ffa..9737f1c 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,6 +7,7 @@ import MyCoupon from '../pages/MyCoupon.vue' import MyOrder from '../pages/MyOrder.vue' import MyAllowance from '../pages/MyAllowance.vue' import MyAllowanceForm from '../pages/MyAllowanceForm.vue' +import MyBank from '../pages/MyBank.vue' const routes = [ { path: '/', name: 'Home', component: Home }, @@ -17,6 +18,7 @@ const routes = [ { path: '/my/order', name: 'MyOrder', component: MyOrder }, { path: '/my/allowance', name: 'MyAllowance', component: MyAllowance }, { path: '/my/allowance/form', name: 'MyAllowanceForm', component: MyAllowanceForm }, + { path: '/my/bank', name: 'MyBank', component: MyBank }, ] const router = createRouter({ history: createWebHistory(), routes })