🐞 fix(色卡与剪样顶部导航固定):
This commit is contained in:
parent
4a949c973f
commit
e8d6ff30cb
@ -3,6 +3,10 @@
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
height: auto;
|
height: auto;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
top: 0;
|
||||||
|
z-index: 9999;
|
||||||
}
|
}
|
||||||
.navBar {
|
.navBar {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
background-color: #f7f7f7ff;
|
background-color: #f7f7f7ff;
|
||||||
padding-bottom: 180px;
|
padding-bottom: 180px;
|
||||||
|
padding-top: 190px;
|
||||||
.backIcon {
|
.backIcon {
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -163,6 +163,7 @@ export default () => {
|
|||||||
</View>
|
</View>
|
||||||
} title="领取色卡"
|
} title="领取色卡"
|
||||||
></NavBar>
|
></NavBar>
|
||||||
|
|
||||||
<View className={styles.remark}>
|
<View className={styles.remark}>
|
||||||
<Address onSelect={getAddress} defaultValue={addressInfo} />
|
<Address onSelect={getAddress} defaultValue={addressInfo} />
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
background-color: #f7f7f7ff;
|
background-color: #f7f7f7ff;
|
||||||
padding-bottom: 180px;
|
padding-bottom: 180px;
|
||||||
|
padding-top: 190px;
|
||||||
.backIcon {
|
.backIcon {
|
||||||
transform: rotate(180deg);
|
transform: rotate(180deg);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -229,7 +229,7 @@ export default () => {
|
|||||||
<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, cindex) =>
|
{item.colors?.map((citem, cindex) =>
|
||||||
<ProductCard bottomStatus={(item.colors?.length - 1) !== cindex} key={citem.id} value={citem} onDelData={onDelData(item)} onChangeNum={onChangeNum} />,
|
<ProductCard bottomStatus={((item.colors?.length - 1) !== cindex) || ((list?.length - 1) === index)} 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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user