薪资核算
This commit is contained in:
parent
ec98e1e168
commit
ebde1a9261
|
|
@ -45,6 +45,8 @@ export default class CompareDetail extends React.Component {
|
|||
<div className="tableWrapper">
|
||||
<Table dataSource={dataSource} columns={mergeDetailColumns}/>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@ import WarningModal from './warningModal'
|
|||
import "./index.less"
|
||||
import EditSalaryDetail from './editSalaryDetail'
|
||||
import SlideModalTitle from "../../components/slideModalTitle"
|
||||
import ImportModal from '../../components/importModal'
|
||||
import { columns } from '../salaryItem/columns'
|
||||
|
||||
|
||||
export default class SalaryDetail extends React.Component {
|
||||
constructor(props) {
|
||||
|
|
@ -24,8 +27,35 @@ export default class SalaryDetail extends React.Component {
|
|||
})
|
||||
}
|
||||
}
|
||||
|
||||
renderFormComponent() {
|
||||
return (
|
||||
<div>
|
||||
<span style={{marginRight: "10px"}}>项目1</span>
|
||||
<span style={{marginRight: "10px"}}>项目2</span>
|
||||
<span style={{marginRight: "10px"}}>项目3</span>
|
||||
<i className="icon-coms-tianjia" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
headerSetCompoent() {
|
||||
return (
|
||||
<div style={{display: "inline-block"}}>
|
||||
<WeaCheckbox id="test" content="导出现有数据" />
|
||||
<WeaHelpfulTip
|
||||
width={200}
|
||||
title="提示:建议先导出现有最新数据,修改后再导入;\n
|
||||
若只需要导出部分数据,请先筛选列表"
|
||||
placement="topLeft"
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
render() {
|
||||
const { slideVisiable } = this.state;
|
||||
|
||||
return (
|
||||
<div className="salaryDetail">
|
||||
<div className="salaryBarWrapper">
|
||||
|
|
@ -67,6 +97,7 @@ export default class SalaryDetail extends React.Component {
|
|||
showMask={true}
|
||||
closeMaskOnClick={() => this.setState({slideVisiable: false})} />
|
||||
}
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue