From 1d1829f585e18547d4519b06c8446a53a82d3529 Mon Sep 17 00:00:00 2001 From: lys <971387674@qq.com> Date: Tue, 17 Dec 2024 15:28:42 +0800 Subject: [PATCH] =?UTF-8?q?custom-=E6=AC=A7=E5=A7=86=E9=BE=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/hrmSalary/index.js | 3 +++ .../Omron/statisticalReport/index.js | 25 +++++++++++++++++++ pc4mobx/hrmSalary/pages/custom-pages/index.js | 10 ++++++++ 3 files changed, 38 insertions(+) create mode 100644 pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js 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;