Commit 0ccf9793 by zhaochengxiang

bug fix

parent e9594451
...@@ -44,7 +44,7 @@ const FC = (props) => { ...@@ -44,7 +44,7 @@ const FC = (props) => {
visible={visible} visible={visible}
footer={null} footer={null}
width='1000px' width='1000px'
bodyStyle={{ padding: '0px 15px 0px 15px', overflowX: 'auto', height: '80vh' }} bodyStyle={{ padding: '15px 15px 0px 15px', overflowX: 'auto', height: '80vh' }}
title='关联资产详情' title='关联资产详情'
centered destroyOnClose centered destroyOnClose
onCancel={() => { close() }} onCancel={() => { close() }}
...@@ -72,7 +72,7 @@ export const Basic = React.forwardRef(function ({ data }, ref) { ...@@ -72,7 +72,7 @@ export const Basic = React.forwardRef(function ({ data }, ref) {
return ( return (
<div key={index}> <div key={index}>
<div className='flex' style={{ alignItems: 'center', padding: '15px 0' }}> <div className='flex' style={{ alignItems: 'center', padding: (index===0)?'0 0 15px':'15px 0' }}>
<div style={{ width: 3, height: 14, backgroundColor: '#0069AC', marginRight: 5 }} /> <div style={{ width: 3, height: 14, backgroundColor: '#0069AC', marginRight: 5 }} />
<span style={{ fontWeight: 'bold', color: '#464646' }}>{group}</span> <span style={{ fontWeight: 'bold', color: '#464646' }}>{group}</span>
</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