Commit 9ace75b9 authored by afc163's avatar afc163

style: fix more detail

parent c159f060
.tagCloud { .tagCloud {
overflow: hidden;
canvas { canvas {
transform: scale(0.25); transform: scale(0.25);
transform-origin: 0 0; transform-origin: 0 0;
......
...@@ -103,7 +103,7 @@ export default class Monitor extends PureComponent { ...@@ -103,7 +103,7 @@ export default class Monitor extends PureComponent {
bordered={false} bordered={false}
className={styles.pieCard} className={styles.pieCard}
> >
<Row gutter={4} style={{ padding: '16px 0' }}> <Row style={{ padding: '16px 0' }}>
<Col span={8}> <Col span={8}>
<Pie <Pie
animate={false} animate={false}
......
...@@ -156,22 +156,21 @@ export default class BasicForms extends PureComponent { ...@@ -156,22 +156,21 @@ export default class BasicForms extends PureComponent {
<Radio value="3">不公开</Radio> <Radio value="3">不公开</Radio>
</Radio.Group> </Radio.Group>
)} )}
<FormItem> <FormItem style={{ marginBottom: 0 }}>
{getFieldDecorator('publicUsers', { {getFieldDecorator('publicUsers')(
})( <Select
<Select mode="multiple"
mode="multiple" placeholder="公开给"
placeholder="公开给" style={{
style={{ margin: '8px 0',
margin: '8px 0', display: getFieldValue('public') === '2' ? 'block' : 'none',
display: getFieldValue('public') === '2' ? 'block' : 'none', }}
}} >
> <Option value="1">同事甲</Option>
<Option value="1">同事甲</Option> <Option value="2">同事乙</Option>
<Option value="2">同事乙</Option> <Option value="3">同事丙</Option>
<Option value="3">同事丙</Option> </Select>
</Select> )}
)}
</FormItem> </FormItem>
</div> </div>
</FormItem> </FormItem>
......
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