|
|
@@ -6,7 +6,7 @@ import PageHeaderLayout from '../../layouts/PageHeaderLayout';
|
|
|
const { Step } = Steps;
|
|
|
|
|
|
const desc1 = (
|
|
|
- <div style={{ fontSize: 12, color: 'rgba(0, 0, 0, 0.45)' }}>
|
|
|
+ <div style={{ fontSize: 12, color: 'rgba(0, 0, 0, 0.45)', position: 'relative', left: 42 }}>
|
|
|
<div style={{ margin: '8px 0 4px' }}>
|
|
|
曲丽丽<Icon style={{ marginLeft: 8 }} type="dingding-o" />
|
|
|
</div>
|
|
|
@@ -15,7 +15,7 @@ const desc1 = (
|
|
|
);
|
|
|
|
|
|
const desc2 = (
|
|
|
- <div style={{ fontSize: 12 }}>
|
|
|
+ <div style={{ fontSize: 12, position: 'relative', left: 42 }}>
|
|
|
<div style={{ margin: '8px 0 4px' }}>
|
|
|
周毛毛<Icon type="dingding-o" style={{ color: '#00A0E9', marginLeft: 8 }} />
|
|
|
</div>
|
|
|
@@ -42,11 +42,11 @@ const extra = (
|
|
|
2016-12-12 ~ 2017-12-12
|
|
|
</Col>
|
|
|
</Row>
|
|
|
- <Steps progressDot current={1}>
|
|
|
- <Step title="创建项目" description={desc1} />
|
|
|
- <Step title="部门初审" description={desc2} />
|
|
|
- <Step title="财务复核" />
|
|
|
- <Step title="完成" />
|
|
|
+ <Steps style={{ marginLeft: -42, width: 'calc(100% + 84px)' }} progressDot current={1}>
|
|
|
+ <Step title={<span style={{ fontSize: 14 }}>创建项目</span>} description={desc1} />
|
|
|
+ <Step title={<span style={{ fontSize: 14 }}>部门初审</span>} description={desc2} />
|
|
|
+ <Step title={<span style={{ fontSize: 14 }}>财务复核</span>} />
|
|
|
+ <Step title={<span style={{ fontSize: 14 }}>完成</span>} />
|
|
|
</Steps>
|
|
|
</div>
|
|
|
);
|