26 lines
665 B
JavaScript
26 lines
665 B
JavaScript
/*
|
|
* Author: 黎永顺
|
|
* name:调薪记录
|
|
* Description:
|
|
* Date: 2024/1/25
|
|
*/
|
|
import React, { Component } from "react";
|
|
import { WeaLocaleProvider, WeaTools } from "ecCom";
|
|
import SalaryAdjustmentRecords from "../mySalaryBenefits/components/SalaryAdjustmentRecords";
|
|
import "../historicalPayroll/index.less";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
class Index extends Component {
|
|
render() {
|
|
const employeeId = WeaTools.getUrlParams().hrmResourceID;
|
|
return (
|
|
<div className="history-payroll-box">
|
|
<SalaryAdjustmentRecords type="mySalaryRecordList4Card" employeeId={employeeId}/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Index;
|