salary-management-front/pc4mobx/hrmSalary/components/importModal/headerSet.js

23 lines
876 B
JavaScript
Raw Normal View History

2023-03-06 15:06:56 +08:00
import React from "react";
import { Button } from "antd";
2023-04-18 16:08:54 +08:00
import { WeaLocaleProvider } from "ecCom";
2022-03-14 17:07:26 +08:00
2023-04-18 16:08:54 +08:00
const getLabel = WeaLocaleProvider.getLabel;
2022-03-14 17:07:26 +08:00
export default class HeaderSet extends React.Component {
2023-03-06 15:06:56 +08:00
render() {
return (
<div style={{ display: "inline-block" }}>
<Button type="default" style={{ marginLeft: "10px", marginRight: "10px" }} onClick={this.props.onSetClick}
2023-06-08 18:13:37 +08:00
loading={this.props.loading}>{getLabel(543374, "表头设置")}</Button>
2023-03-06 15:06:56 +08:00
{/*<WeaCheckbox style={{marginRight: "10px"}}/>*/}
{/*<WeaHelpfulTip*/}
{/* className="headSetTips"*/}
{/* width={200}*/}
{/* title="提示:勾选此项,则导出模板的考勤模块字段自动填充考勤模块的数据,导入时默认为覆盖导入"*/}
{/* placement="topLeft"*/}
{/*/>*/}
</div>
);
}
2023-03-03 17:33:11 +08:00
}