diff --git a/pc4mobx/hrmSalary/index.js b/pc4mobx/hrmSalary/index.js index 272bdbdd..23c9a6e9 100644 --- a/pc4mobx/hrmSalary/index.js +++ b/pc4mobx/hrmSalary/index.js @@ -54,6 +54,8 @@ import TopologyMap from "./pages/topologyMap"; import SupplementaryCalc from "./pages/supplementaryCalc"; import VariableSalary from "./pages/variableSalary"; import Layout from "./layout"; + +import CustomRoutes from "./pages/custom-pages"; import stores from "./stores"; import "./style/index"; // 读取系统多语言配置 @@ -118,6 +120,7 @@ const Routes = ( + {CustomRoutes} ); diff --git a/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js new file mode 100644 index 00000000..640b548a --- /dev/null +++ b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js @@ -0,0 +1,25 @@ +/* + * 欧姆龙二开 + * 月度薪资环比统计报表(本月、上月维度比较) + * @Author: 黎永顺 + * @Date: 2024/12/17 + * @Wechat: + * @Email: 971387674@qq.com + * @description: +*/ +import React, { Component } from "react"; +import { WeaLocaleProvider } from "ecCom"; + +const getLabel = WeaLocaleProvider.getLabel; + +class Index extends Component { + render() { + return ( +
+ +
+ ); + } +} + +export default Index; diff --git a/pc4mobx/hrmSalary/pages/custom-pages/index.js b/pc4mobx/hrmSalary/pages/custom-pages/index.js index e69de29b..013cfc02 100644 --- a/pc4mobx/hrmSalary/pages/custom-pages/index.js +++ b/pc4mobx/hrmSalary/pages/custom-pages/index.js @@ -0,0 +1,10 @@ +import React from "react"; +import Route from "react-router/lib/Route"; +import StatisticalReport from "./Omron/statisticalReport"; + +const CustomRoutes = [ + +]; + +export default CustomRoutes;