🐞 fix(ID1000993):【客户列表】-筛选自定义标签,选中后没有边框
This commit is contained in:
parent
71fdd5ff80
commit
41f72e5ee4
@ -30,8 +30,15 @@
|
|||||||
.active {
|
.active {
|
||||||
background: rgba(51, 127, 255, 0.1);
|
background: rgba(51, 127, 255, 0.1);
|
||||||
border: 1px solid #337fff;
|
border: 1px solid #337fff;
|
||||||
font-weight: 550;
|
font-weight: 500;
|
||||||
color: #337fff;
|
color: #337fff;
|
||||||
|
min-width: 80px;
|
||||||
|
font-size: 28px;
|
||||||
|
padding: 20px 60px 20px 60px;
|
||||||
|
margin-right: 24px;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
border-radius: 16px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -106,7 +106,7 @@ const Tag = (props: Props, ref) => {
|
|||||||
{
|
{
|
||||||
taglist.map((item, index) => {
|
taglist.map((item, index) => {
|
||||||
return (
|
return (
|
||||||
<View key={index} className={classnames(item.checked ? styles.itemactiveFlex : styles.itemFlex)} onClick={() => handTag?.(item)}>{item.name}</View>
|
<View key={index} className={classnames(item.checked ? styles.active : styles.itemFlex)} onClick={() => handTag?.(item)}>{item.name}</View>
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@ -346,6 +346,7 @@ page {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.posssBox {
|
.posssBox {
|
||||||
|
border-radius: 8px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 32px;
|
left: 32px;
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user