This commit is contained in:
X1627315083@163.com
2026-04-09 10:31:29 +08:00
parent fa2b9ff335
commit 9857c2a2f9
10 changed files with 205 additions and 5 deletions

View File

@@ -192,7 +192,32 @@ const routes: Array<RouteRecordRaw> = [
path: "myListings",
name: "myListings",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/BrandProfile/index.vue"),
children:[
{
path: "",
name: "myListingsChild",
meta: { enter: "all" },
redirect: "/home/seller/myListings/index",
},
{
path: "index",
name: "myListingsIndex",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/MyListings/index.vue"),
},
{
path: "select",
name: "myListingsSelect",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/MyListingCreateSelect/index.vue"),
},
{
path: "select/:id",
name: "myListingsSelectItem",
meta: { enter: "all" },
component: () => import("@/views/SellerDashboard/MyListingCreateSelectItem/index.vue"),
},
]
},
{
path: "myOrders",