13 lines
414 B
JavaScript
13 lines
414 B
JavaScript
import { MENU_CODES, PERMISSIONS } from "@/app/permissions";
|
|
|
|
export const paymentRoutes = [
|
|
{
|
|
label: "账单列表",
|
|
loader: () => import("./pages/PaymentBillListPage.jsx").then((module) => module.PaymentBillListPage),
|
|
menuCode: MENU_CODES.paymentBillList,
|
|
pageKey: "payment-bill-list",
|
|
path: "/payment/bills",
|
|
permission: PERMISSIONS.paymentBillView,
|
|
}
|
|
];
|