修改相关字段

This commit is contained in:
zhx 2026-05-25 23:57:15 +08:00
parent f97aad449a
commit f2c7ccf7f3
2 changed files with 14 additions and 14 deletions

View File

@ -7,7 +7,7 @@ export const hostOrgRoutes = [
menuCode: MENU_CODES.hostOrgCountries,
pageKey: "host-org-countries",
path: "/host/countries",
permission: PERMISSIONS.countryView
permission: PERMISSIONS.countryView,
},
{
label: "区域管理",
@ -15,15 +15,15 @@ export const hostOrgRoutes = [
menuCode: MENU_CODES.hostOrgRegions,
pageKey: "host-org-regions",
path: "/host/regions",
permission: PERMISSIONS.regionView
permission: PERMISSIONS.regionView,
},
{
label: "经理列表",
label: "Manager列表",
loader: () => import("./pages/HostManagersPage.jsx").then((module) => module.HostManagersPage),
menuCode: MENU_CODES.hostOrgManagers,
pageKey: "host-org-managers",
path: "/host/managers",
permission: PERMISSIONS.agencyView
permission: PERMISSIONS.agencyView,
},
{
label: "Agency 列表",
@ -31,7 +31,7 @@ export const hostOrgRoutes = [
menuCode: MENU_CODES.hostOrgAgencies,
pageKey: "host-org-agencies",
path: "/host/agencies",
permission: PERMISSIONS.agencyView
permission: PERMISSIONS.agencyView,
},
{
label: "BD Leader 列表",
@ -39,7 +39,7 @@ export const hostOrgRoutes = [
menuCode: MENU_CODES.hostOrgBdLeaders,
pageKey: "host-org-bd-leaders",
path: "/host/bd-leaders",
permission: PERMISSIONS.bdView
permission: PERMISSIONS.bdView,
},
{
label: "BD 列表",
@ -47,22 +47,22 @@ export const hostOrgRoutes = [
menuCode: MENU_CODES.hostOrgBds,
pageKey: "host-org-bds",
path: "/host/bds",
permission: PERMISSIONS.bdView
permission: PERMISSIONS.bdView,
},
{
label: "主播列表",
label: "Host 列表",
loader: () => import("./pages/HostHostsPage.jsx").then((module) => module.HostHostsPage),
menuCode: MENU_CODES.hostOrgHosts,
pageKey: "host-org-hosts",
path: "/host/hosts",
permission: PERMISSIONS.hostView
permission: PERMISSIONS.hostView,
},
{
label: "币商列表",
label: "Coin Saller列表",
loader: () => import("./pages/HostCoinSellersPage.jsx").then((module) => module.HostCoinSellersPage),
menuCode: MENU_CODES.hostOrgCoinSellers,
pageKey: "host-org-coin-sellers",
path: "/host/coin-sellers",
permission: PERMISSIONS.coinSellerView
}
permission: PERMISSIONS.coinSellerView,
},
];

View File

@ -27,8 +27,8 @@ const permissionGroupDefinitions = [
{ key: "regions", prefixes: ["region"], title: "区域管理" },
{ key: "agencies", prefixes: ["agency"], title: "Agency 列表" },
{ key: "bds", prefixes: ["bd"], title: "BD 列表" },
{ key: "hosts", prefixes: ["host"], title: "主播列表" },
{ key: "coin-sellers", prefixes: ["coin-seller"], title: "币商列表" },
{ key: "hosts", prefixes: ["host"], title: "Host 列表" },
{ key: "coin-sellers", prefixes: ["coin-seller"], title: "Coin Saller列表" },
{ key: "logs", prefixes: ["log"], title: "日志审计" },
{ key: "common", prefixes: ["upload"], title: "通用能力" },
];