Commit f0102c6d authored by ddcat1115's avatar ddcat1115

update style

parent 2b626f22
...@@ -128,7 +128,7 @@ class StandardTable extends PureComponent { ...@@ -128,7 +128,7 @@ class StandardTable extends PureComponent {
<Alert <Alert
message={( message={(
<p> <p>
已选择 <a>{selectedRowKeys.length}</a> 项&nbsp;&nbsp; 已选择 <a style={{ fontWeight: 600 }}>{selectedRowKeys.length}</a> 项&nbsp;&nbsp;
服务调用总计 <span style={{ fontWeight: 600 }}>{totalCallNo}</span> 服务调用总计 <span style={{ fontWeight: 600 }}>{totalCallNo}</span>
<a onClick={this.cleanSelectedKeys} style={{ marginLeft: 24 }}>清空</a> <a onClick={this.cleanSelectedKeys} style={{ marginLeft: 24 }}>清空</a>
</p> </p>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
.standardTable { .standardTable {
:global { :global {
.ant-table-pagination { .ant-table-pagination {
margin-bottom: 0; margin-top: 24px;
} }
} }
......
...@@ -117,7 +117,7 @@ export default class BasicList extends PureComponent { ...@@ -117,7 +117,7 @@ export default class BasicList extends PureComponent {
bodyStyle={{ padding: '0 32px 40px 32px' }} bodyStyle={{ padding: '0 32px 40px 32px' }}
extra={extraContent} extra={extraContent}
> >
<Button type="dashed" style={{ width: '100%', marginBottom: 12 }} icon="plus"> <Button type="dashed" style={{ width: '100%', margin: 8 }} icon="plus">
添加 添加
</Button> </Button>
<List <List
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
line-height: 48px; line-height: 48px;
} }
.ant-list-pagination { .ant-list-pagination {
margin-top: 16px; margin-top: 24px;
} }
} }
.headerInfo { .headerInfo {
......
...@@ -22,11 +22,11 @@ ...@@ -22,11 +22,11 @@
float: left; float: left;
width: 50%; width: 50%;
p { p {
color: @text-color-secondary;
line-height: 32px; line-height: 32px;
font-size: 24px; font-size: 24px;
} }
p:first-child { p:first-child {
color: @text-color-secondary;
font-size: 12px; font-size: 12px;
line-height: 20px; line-height: 20px;
margin-bottom: 4px; margin-bottom: 4px;
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
@import "../../utils/utils.less"; @import "../../utils/utils.less";
.tableList { .tableList {
padding-bottom: 8px;
.tableListOperator { .tableListOperator {
margin-bottom: 16px; margin-bottom: 16px;
button { button {
......
...@@ -6,7 +6,7 @@ import PageHeaderLayout from '../../layouts/PageHeaderLayout'; ...@@ -6,7 +6,7 @@ import PageHeaderLayout from '../../layouts/PageHeaderLayout';
const { Step } = Steps; const { Step } = Steps;
const desc1 = ( 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' }}> <div style={{ margin: '8px 0 4px' }}>
曲丽丽<Icon style={{ marginLeft: 8 }} type="dingding-o" /> 曲丽丽<Icon style={{ marginLeft: 8 }} type="dingding-o" />
</div> </div>
...@@ -15,7 +15,7 @@ const desc1 = ( ...@@ -15,7 +15,7 @@ const desc1 = (
); );
const desc2 = ( const desc2 = (
<div style={{ fontSize: 12 }}> <div style={{ fontSize: 12, position: 'relative', left: 42 }}>
<div style={{ margin: '8px 0 4px' }}> <div style={{ margin: '8px 0 4px' }}>
周毛毛<Icon type="dingding-o" style={{ color: '#00A0E9', marginLeft: 8 }} /> 周毛毛<Icon type="dingding-o" style={{ color: '#00A0E9', marginLeft: 8 }} />
</div> </div>
...@@ -42,11 +42,11 @@ const extra = ( ...@@ -42,11 +42,11 @@ const extra = (
2016-12-12 ~ 2017-12-12 2016-12-12 ~ 2017-12-12
</Col> </Col>
</Row> </Row>
<Steps progressDot current={1}> <Steps style={{ marginLeft: -42, width: 'calc(100% + 84px)' }} progressDot current={1}>
<Step title="创建项目" description={desc1} /> <Step title={<span style={{ fontSize: 14 }}>创建项目</span>} description={desc1} />
<Step title="部门初审" description={desc2} /> <Step title={<span style={{ fontSize: 14 }}>部门初审</span>} description={desc2} />
<Step title="财务复核" /> <Step title={<span style={{ fontSize: 14 }}>财务复核</span>} />
<Step title="完成" /> <Step title={<span style={{ fontSize: 14 }}>完成</span>} />
</Steps> </Steps>
</div> </div>
); );
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment