diff --git a/src/components/StandardTable/index.js b/src/components/StandardTable/index.js index f98e9399c97fba76f289c67de7a23bab7f2e437d..3a4ec8a8a0875f7d34a64e0a743efe15a20bbf9a 100644 --- a/src/components/StandardTable/index.js +++ b/src/components/StandardTable/index.js @@ -1,6 +1,6 @@ import React, { PureComponent } from 'react'; import moment from 'moment'; -import { Table, Alert, Badge } from 'antd'; +import { Table, Alert, Badge, Divider } from 'antd'; import styles from './index.less'; const statusMap = ['default', 'processing', 'success', 'error']; @@ -101,7 +101,7 @@ class StandardTable extends PureComponent { render: () => (
), diff --git a/src/components/StandardTable/index.less b/src/components/StandardTable/index.less index 66e824884b83cc19102fefc7938b8b0d99e40b34..4ced9e78814b02d62fa252610cc13f8294f9c1ef 100644 --- a/src/components/StandardTable/index.less +++ b/src/components/StandardTable/index.less @@ -10,12 +10,4 @@ .tableAlert { margin-bottom: 16px; } - - .splitLine { - background: @border-color-split; - display: inline-block; - margin: 0 8px; - width: 1px; - height: 12px; - } }