卖家入口

This commit is contained in:
李志鹏
2026-04-08 13:27:20 +08:00
parent 4da9c06aa9
commit fe93b375c4
9 changed files with 254 additions and 2 deletions

View File

@@ -171,6 +171,12 @@ const routes: Array<RouteRecordRaw> = [
component: () => import("@/component/Account/otherUsers.vue"),
},
{
path: "becomeSeller",
name: "becomeSeller",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/becomeSeller.vue"),
},
{
path: "seller",
name: "seller",
meta: { enter: "all" },
@@ -181,6 +187,24 @@ const routes: Array<RouteRecordRaw> = [
name: "brandProfile",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
},
{
path: "myListings",
name: "myListings",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
},
{
path: "myOrders",
name: "myOrders",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
},
{
path: "settings",
name: "settings",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
},
],
},