13 lines
410 B
JavaScript
13 lines
410 B
JavaScript
import { MENU_CODES, PERMISSIONS } from "@/app/permissions";
|
|
|
|
export const luckyGiftRoutes = [
|
|
{
|
|
label: "幸运礼物",
|
|
loader: () => import("./pages/LuckyGiftConfigPage.jsx").then((module) => module.LuckyGiftConfigPage),
|
|
menuCode: MENU_CODES.luckyGift,
|
|
pageKey: "lucky-gift",
|
|
path: "/operations/lucky-gift",
|
|
permission: PERMISSIONS.luckyGiftView,
|
|
},
|
|
];
|