/* * * 薪资所属月-提示框 * @Author: 黎永顺 * @Date: 2024/7/15 * @Wechat: * @Email: 971387674@qq.com * @description: */ import React, { Component } from "react"; import { WeaHelpfulTip, WeaLocaleProvider } from "ecCom"; const getLabel = WeaLocaleProvider.getLabel; class SalaryMonthHelpfulTip extends Component { render() { const { salarySendDetailBaseInfo = {} } = this.props; const { salarySobCycle: { salaryCycle, taxCycle, attendCycle, socialSecurityCycle } } = salarySendDetailBaseInfo; const { fromDate, endDate } = salaryCycle; const { fromDate: aFromDate, endDate: aEndDate } = attendCycle; return (
{getLabel(111, "薪资周期")}
{fromDate}{getLabel(111, "至")}{endDate}
{getLabel(111, "税款所属期")}
{taxCycle}
{getLabel(111, "考勤取值周期")}
{aFromDate}{getLabel(111, "至")}{aEndDate}
{getLabel(111, "福利台账月份")}
{`${getLabel(111, "引用")}${socialSecurityCycle}${getLabel(111, "的福利台账数据")}`}
}/> ); } } export default SalaryMonthHelpfulTip;