salary-management-front/pc4mobx/hrmSalary/pages/custom-pages/index.js

31 lines
1.6 KiB
JavaScript

import React from "react";
import Route from "react-router/lib/Route";
import CustomSalarySummary from "./lingyue/salarySummary";
import CustomSISummary from "./lingyue/socialSummary";
import CustomFundSummary from "./lingyue/fundSummary";
import VouncherSummary from "./lingyue/vouncherSummary";
import HistoryVouncherSummary from "./lingyue/historyVouncherSummary";
import SalaryStatisticsReport from "./lingyue/salaryStatisticsReport";
import SalaryPaymentReport from "./lingyue/salaryPaymentReport";
import SalaryTaxReturnForm from "./lingyue/salaryTaxReturnForm";
const CustomRoutes = [
<Route key="customPage_salarySummary_lingyue" path="customPage_salarySummary_lingyue"
component={CustomSalarySummary}/>,
<Route key="customPage_siSummary_lingyue" path="customPage_siSummary_lingyue"
component={CustomSISummary}/>,
<Route key="customPage_fundSummary_lingyue" path="customPage_fundSummary_lingyue"
component={CustomFundSummary}/>,
<Route key="customPage_vouchers_lingyue" path="customPage_vouchers_lingyue" component={VouncherSummary}/>,
<Route key="customPage_historyVouchers_lingyue" path="customPage_historyVouchers_lingyue"
component={HistoryVouncherSummary}/>,
<Route key="customPage_salaryStatistic_lingyue" path="customPage_salaryStatistic_lingyue"
component={SalaryStatisticsReport}/>,
<Route key="customPage_paymentReport_lingyue" path="customPage_paymentReport_lingyue"
component={SalaryPaymentReport}/>,
<Route key="customPage_salaryTaxReturnForm_lingyue" path="customPage_salaryTaxReturnForm_lingyue"
component={SalaryTaxReturnForm}/>
];
export default CustomRoutes;