Browse Source

Merge branch 'dev' of ssh://10.10.100.21/source/uas-office-integration

RaoMeng 5 years ago
parent
commit
6dd041ea7a

+ 1 - 1
uas-office-web/uas-mobile/src/components/common/bizgoblin/CommonCharts.jsx

@@ -64,7 +64,7 @@ export default class CommonCharts extends Component {
       <div className='common-charts' style={{ marginBottom: '8px' }}>
         <LazyLoad
           once
-          height={100}
+          height={80}
           resize={true}
           overflow={setOverflow}
         >

+ 2 - 2
uas-office-web/uas-mobile/src/components/common/bizgoblin/TableChart.jsx

@@ -44,11 +44,11 @@ export default class TableChart extends Component {
     if (detailData.length == 0) {
       height = '320px'
     } else {
-      height = detailData.length * 65 + 'px'
+      height = detailData.length * 100 + 'px'
     }
 
     return (
-      <div className='table-charts' style={{ width: '100%', overflowY: 'auto' }}>
+      <div className='table-charts' style={{ width: '100%', overflowY: 'auto', background: '#fff' }}>
         <Table
           scroll={{ x: '100%' }}
           style={{ height: height, maxHeight: '320px' }}