21 lines
766 B
JavaScript
21 lines
766 B
JavaScript
import React from "react";
|
|
import { Button } from "antd";
|
|
|
|
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}>表头设置</Button>
|
|
{/*<WeaCheckbox style={{marginRight: "10px"}}/>*/}
|
|
{/*<WeaHelpfulTip*/}
|
|
{/* className="headSetTips"*/}
|
|
{/* width={200}*/}
|
|
{/* title="提示:勾选此项,则导出模板的考勤模块字段自动填充考勤模块的数据,导入时默认为覆盖导入"*/}
|
|
{/* placement="topLeft"*/}
|
|
{/*/>*/}
|
|
</div>
|
|
);
|
|
}
|
|
}
|