salary-management-front/pc4mobx/hrmSalary/components/stepSlide/stepSlideHeader.js

26 lines
885 B
JavaScript

import React from 'react';
import { WeaSteps } from 'ecCom'
const Step = WeaSteps.Step;
import "./index.less"
export default class StepSlideHeader extends React.Component {
render() {
return (
<div className="stepSlideHeader">
<div className="headerWrapper">
<WeaSteps current={this.props.current}>
<Step description="基础设置" />
<Step description="关联人员" />
<Step description="薪资项目" />
<Step description="调薪记薪规则" />
<Step description="校验规则" />
</WeaSteps>
</div>
<div className="contentWrapper">
{this.props.children}
</div>
</div>
)
}
}