修复页面bug

This commit is contained in:
X1627315083
2025-08-26 10:14:34 +08:00
parent cfe449f094
commit b6b554424b
49 changed files with 501 additions and 134 deletions

View File

@@ -254,9 +254,16 @@ const routes: Array<RouteRecordRaw> = [
path: "affiliateAudit",
name: "affiliateAudit",
meta: { enter: 3 },
component: () =>
import("@/component/Administrator/affiliate/affiliateAudit.vue"),
component: () =>import("@/component/Administrator/affiliate/affiliateAudit/affiliateAudit.vue"),
},
{
path: "affiliateReferral",
name: "affiliateReferral",
meta: {
enter: 3,
},
component: () =>import("@/component/Administrator/affiliate/affiliateReferral/index.vue"),
},
{
path: "TransactionTable",
name: "TransactionTable",
@@ -311,6 +318,14 @@ const routes: Array<RouteRecordRaw> = [
},
component: () => import("@/views/affiliate/affiliatePage.vue"),
children: [
{
path: "",
name: "defaultAffiliateHome",
meta: {
enter: 2,
},
component: () => import("@/component/affiliate/home.vue"),
},
{
path: "/affiliateHome",
name: "affiliateHome",
@@ -318,14 +333,6 @@ const routes: Array<RouteRecordRaw> = [
enter: 2,
},
component: () => import("@/component/affiliate/home.vue"),
},
{
path: "/affiliateReferral",
name: "affiliateReferral",
meta: {
enter: 2,
},
component: () => import("@/component/affiliate/Referral/index.vue"),
},
],
},