Commit b2ab6f18 authored by 李腾's avatar 李腾

fix: 修改地址提醒样式

parent 64adc16c
...@@ -192,10 +192,13 @@ const TableList = props => { ...@@ -192,10 +192,13 @@ const TableList = props => {
// if (updateAddressList) { // if (updateAddressList) {
// addressData = updateAddressList.pop(); // addressData = updateAddressList.pop();
// } // }
const content = () => const content = () => (
updateAddressList?.map(item => ( <div style={{ maxHeight: '300px', overflow: 'auto' }}>
<PopoverNotice time={item?.time} content={item?.content} /> {updateAddressList?.map(item => (
)); <PopoverNotice time={item?.time} content={item?.content} />
))}
</div>
);
return ( return (
<div className={style['notice-btn']}> <div className={style['notice-btn']}>
{updateAddressList ? ( {updateAddressList ? (
......
...@@ -98,6 +98,7 @@ ...@@ -98,6 +98,7 @@
} }
.popover-notice { .popover-notice {
max-width: 300px; max-width: 400px;
line-height: 32px;
word-break: break-all; word-break: break-all;
} }
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