Commit d5516013 authored by 李腾's avatar 李腾

fix: 修改催单图标样式

parent 8308dc75
...@@ -168,16 +168,16 @@ const TableList = props => { ...@@ -168,16 +168,16 @@ const TableList = props => {
<PopoverNotice time={item?.time} content={item?.content} /> <PopoverNotice time={item?.time} content={item?.content} />
)); ));
return ( return (
<> <div className={style['urge-box']}>
{_} {_}
{urgeDeliverGoodsList ? ( {urgeDeliverGoodsList ? (
<Popover placement="top" title="催发货" content={<>{content()}</>} trigger="hover"> <Popover placement="top" title="催发货" content={<>{content()}</>} trigger="hover">
<span className={style.urge}></span> <span className={style.urge}></span>
</Popover> </Popover>
) : ( ) : (
'' ''
)} )}
</> </div>
); );
}, },
}, },
......
...@@ -84,16 +84,20 @@ ...@@ -84,16 +84,20 @@
} }
// 催发货图标 // 催发货图标
.urge-box {
white-space: nowrap;
}
.urge { .urge {
display: inline-block; display: inline-block;
width: 20px; width: 36px;
height: 20px; height: 17px;
margin-left: 5px; margin-left: 5px;
color: #fff; color: #ff1515;
line-height: 20px; font-size: 12px;
line-height: 16px;
text-align: center; text-align: center;
background-color: red; border: 1px solid #ff1515;
border-radius: 50%; border-radius: 18px;
cursor: pointer; cursor: pointer;
} }
......
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