From 57f8559020c02330585bf7ba110e1310498fd889 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=8E=E5=BF=97=E9=B9=8F?= <2916022834@qq.com>
Date: Fri, 29 May 2026 10:04:47 +0800
Subject: [PATCH] =?UTF-8?q?=E5=85=88=E5=8E=BB=E6=8E=89=E7=99=BB=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/down-menu.vue | 22 +++++++--
src/components/main-header.vue | 9 ++--
src/components/main-menu-dialog.vue | 4 +-
src/routes.ts | 74 ++++++++++++++---------------
4 files changed, 64 insertions(+), 45 deletions(-)
diff --git a/src/components/down-menu.vue b/src/components/down-menu.vue
index 43d3104..1ec1c25 100644
--- a/src/components/down-menu.vue
+++ b/src/components/down-menu.vue
@@ -4,7 +4,7 @@
{{ title }}
-
+
import('./pages/help-centre/index.vue')
},
- {
- path: 'my-account',
- name: 'MyAccount',
- component: () => import('./pages/my-account/index.vue'),
- children: [
- {
- path: '',
- name: 'welcome',
- component: () => import('./pages/my-account/welcome.vue'),
- },
- {
- path: 'orders',
- name: 'orders',
- component: () => import('./pages/my-account/orders.vue'),
- },
- {
- path: 'subscriptions',
- name: 'subscriptions',
- component: () => import('./pages/my-account/subscriptions.vue'),
- },
- {
- path: 'address',
- name: 'address',
- component: () => import('./pages/my-account/address.vue'),
- },
- {
- path: 'payment-methods',
- name: 'payment-methods',
- component: () => import('./pages/my-account/payment-methods.vue'),
- },
- {
- path: ':pathMatch(.*)*',
- name: 'not-found-welcome',
- component: () => import('./pages/my-account/welcome.vue'),
- },
- ]
- },
+ // {
+ // path: 'my-account',
+ // name: 'MyAccount',
+ // component: () => import('./pages/my-account/index.vue'),
+ // children: [
+ // {
+ // path: '',
+ // name: 'welcome',
+ // component: () => import('./pages/my-account/welcome.vue'),
+ // },
+ // {
+ // path: 'orders',
+ // name: 'orders',
+ // component: () => import('./pages/my-account/orders.vue'),
+ // },
+ // {
+ // path: 'subscriptions',
+ // name: 'subscriptions',
+ // component: () => import('./pages/my-account/subscriptions.vue'),
+ // },
+ // {
+ // path: 'address',
+ // name: 'address',
+ // component: () => import('./pages/my-account/address.vue'),
+ // },
+ // {
+ // path: 'payment-methods',
+ // name: 'payment-methods',
+ // component: () => import('./pages/my-account/payment-methods.vue'),
+ // },
+ // {
+ // path: ':pathMatch(.*)*',
+ // name: 'not-found-welcome',
+ // component: () => import('./pages/my-account/welcome.vue'),
+ // },
+ // ]
+ // },
{ path: 'privacy-policy',
name: 'privacy-policy',
component: () => import('./pages/others/privacy-policy.vue')