diff --git a/pc4mobx/hrmSalary/apis/custom-apis/omron/index.js b/pc4mobx/hrmSalary/apis/custom-apis/omron/index.js new file mode 100644 index 00000000..56b83e3a --- /dev/null +++ b/pc4mobx/hrmSalary/apis/custom-apis/omron/index.js @@ -0,0 +1,7 @@ +import { postFetch } from "../../../util/request"; + +// 欧姆龙-月度薪资环比统计报表(本月、上月维度比较) +export const getYdxzhbReportList = (params) => { + return postFetch("/api/bs/hrmsalary/salaryacct/oml/ydxzhbReportList", params); +}; + diff --git a/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.css b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.css new file mode 100644 index 00000000..baa2bd60 --- /dev/null +++ b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.css @@ -0,0 +1,9 @@ +.omron_report { + height: 100%; + background: #f6f6f6; + padding: 8px 16px; + + .wea-new-table { + background: #FFF; + } +} diff --git a/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js index 640b548a..d6f24ff6 100644 --- a/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js +++ b/pc4mobx/hrmSalary/pages/custom-pages/Omron/statisticalReport/index.js @@ -8,17 +8,56 @@ * @description: */ import React, { Component } from "react"; -import { WeaLocaleProvider } from "ecCom"; +import { WeaDatePicker, WeaLocaleProvider, WeaTable, WeaTop } from "ecCom"; +import * as API from "../../../../apis/custom-apis/omron"; +import { Button } from "antd"; +import moment from "moment"; +import "./index.css"; const getLabel = WeaLocaleProvider.getLabel; class Index extends Component { - render() { - return ( -