23 lines
876 B
JavaScript
23 lines
876 B
JavaScript
import React from "react";
|
|
import { Button } from "antd";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
export default class HeaderSet extends React.Component {
|
|
render() {
|
|
return (
|
|
<div style={{ display: "inline-block" }}>
|
|
<Button type="default" style={{ marginLeft: "10px", marginRight: "10px" }} onClick={this.props.onSetClick}
|
|
loading={this.props.loading}>{getLabel(543374, "表头设置")}</Button>
|
|
{/*<WeaCheckbox style={{marginRight: "10px"}}/>*/}
|
|
{/*<WeaHelpfulTip*/}
|
|
{/* className="headSetTips"*/}
|
|
{/* width={200}*/}
|
|
{/* title="提示:勾选此项,则导出模板的考勤模块字段自动填充考勤模块的数据,导入时默认为覆盖导入"*/}
|
|
{/* placement="topLeft"*/}
|
|
{/*/>*/}
|
|
</div>
|
|
);
|
|
}
|
|
}
|