|
@@ -182,10 +182,8 @@ function header(props) {
|
182
|
182
|
</Button>
|
183
|
183
|
</Form.Item>
|
184
|
184
|
</Form>
|
185
|
|
- <div style={{ margin: '10px 0 16px 0' }}>
|
186
|
|
- {/* <Button type="danger" className={styles.addBtn} style={{ padding: '0' }} > */}
|
187
|
|
- <SelectContact type="danger" onClick={() => getList({ pageNum: 1, pageSize: 10 })} />
|
188
|
|
- {/* </Button> */}
|
|
185
|
+ <div style={{ margin: '10px 0 16px 0', display: 'flex' }}>
|
|
186
|
+ <SelectContact type="danger" onClick={() => getList({ pageNum: 1, pageSize: 10 })} />
|
189
|
187
|
<Button type="primary" className={styles.addBtn} onClick={() => toDel()} style={{ marginLeft: '30px' }} >删除</Button>
|
190
|
188
|
</div>
|
191
|
189
|
<Table rowSelection={rowSelection} rowKey={r => r.contactId} dataSource={data.records} columns={columns} pagination={false} />
|