🐞 fix(ID1001329领取色卡剪样- UI还原):

This commit is contained in:
czm 2023-03-02 15:03:49 +08:00
parent 990b8a4f1d
commit 4a949c973f
2 changed files with 5 additions and 3 deletions

View File

@ -13,7 +13,6 @@
margin-left: 42px; margin-left: 42px;
flex: 1; flex: 1;
font-size: 28px; font-size: 28px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
text { text {
@include common_ellipsis; @include common_ellipsis;
} }
@ -27,4 +26,7 @@
width: 170px; width: 170px;
} }
} }
.bottom_styles {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
} }

View File

@ -228,8 +228,8 @@ export default () => {
{list?.map((item, index) => <View key={item.id} className={styles.card_con}> {list?.map((item, index) => <View key={item.id} className={styles.card_con}>
<View className={styles.card_header}>{formatHashTag(item.code, item.name)}</View> <View className={styles.card_header}>{formatHashTag(item.code, item.name)}</View>
<View className={styles.card_list}> <View className={styles.card_list}>
{item.colors?.map(citem => {item.colors?.map((citem, cindex) =>
<ProductCard key={citem.id} value={citem} onDelData={onDelData(item)} onChangeNum={onChangeNum} />, <ProductCard bottomStatus={(item.colors?.length - 1) !== cindex} key={citem.id} value={citem} onDelData={onDelData(item)} onChangeNum={onChangeNum} />,
)} )}
{(list?.length - 1 === index) && <View className={styles.express_btn}></View>} {(list?.length - 1 === index) && <View className={styles.express_btn}></View>}
</View> </View>