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