🎈 perf(优化了搜索框与banner图):
This commit is contained in:
parent
46b80f0700
commit
cddb3b93e6
@ -1,13 +1,12 @@
|
||||
.swiper_con {
|
||||
padding: 0 20px;
|
||||
height: 178px;
|
||||
height: 270px;
|
||||
.xswiper {
|
||||
height: 100% !important;
|
||||
border-radius: 20px;
|
||||
.image_item {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
@ -5,7 +5,7 @@
|
||||
width: 100%;
|
||||
z-index: 0;
|
||||
.icon_a_sousuo1_self {
|
||||
font-size: 37px;
|
||||
font-size: 40px;
|
||||
color: $color_font_two;
|
||||
}
|
||||
.search_con {
|
||||
@ -17,22 +17,25 @@
|
||||
font-size: 27px;
|
||||
background: #eee;
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
height: 72px;
|
||||
border-radius: 50px;
|
||||
padding: 0 60px;
|
||||
padding: 0 60px 0 80px;
|
||||
box-sizing: border-box;
|
||||
z-index: 0;
|
||||
&::-webkit-input-placeholder { /* WebKit browsers */
|
||||
&::-webkit-input-placeholder {
|
||||
/* WebKit browsers */
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&::-moz-placeholder { /* Mozilla Firefox 19+ */
|
||||
&::-moz-placeholder {
|
||||
/* Mozilla Firefox 19+ */
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
&::-ms-input-placeholder { /* Internet Explorer 10+ */
|
||||
&::-ms-input-placeholder {
|
||||
/* Internet Explorer 10+ */
|
||||
color: #999;
|
||||
font-size: 16px;
|
||||
}
|
||||
@ -41,7 +44,6 @@
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
.btn {
|
||||
width: 100px;
|
||||
@ -50,12 +52,11 @@
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
.icon_inner {
|
||||
margin-right: 20px;
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
left: 24px;
|
||||
margin-right: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
@ -65,5 +66,4 @@
|
||||
.input_out {
|
||||
padding-left: 20px !important;
|
||||
}
|
||||
|
||||
}
|
@ -18,6 +18,7 @@ type Params = {
|
||||
btnTitle?: string
|
||||
debounceTime?: number //防抖时间,不设默认为零
|
||||
defaultValue?: string
|
||||
borderRadius?: string
|
||||
}
|
||||
|
||||
export default memo(
|
||||
@ -35,6 +36,7 @@ export default memo(
|
||||
btnTitle = '搜索', //搜索文字
|
||||
debounceTime = 0, //防抖时间,不设默认为零
|
||||
defaultValue = '', //默认值
|
||||
borderRadius = '50rpx',
|
||||
}: Params,
|
||||
ref,
|
||||
) => {
|
||||
@ -85,6 +87,7 @@ export default memo(
|
||||
)}></View>
|
||||
)}
|
||||
<Input
|
||||
style={{ borderRadius }}
|
||||
alwaysEmbed={true}
|
||||
cursorSpacing={150}
|
||||
placeholderStyle='color:#ABABAB; font-size:26rpx'
|
||||
|
@ -7,13 +7,13 @@
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 20px 20px 30px 20px;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
align-items: center;
|
||||
.search_collect {
|
||||
font-size: 26px;
|
||||
border: 2px solid #007AFF;
|
||||
color: #007AFF;
|
||||
border: 2px solid #007aff;
|
||||
color: #007aff;
|
||||
border-radius: 50px;
|
||||
width: 132px;
|
||||
height: 44px;
|
||||
@ -22,12 +22,12 @@
|
||||
}
|
||||
.search_input {
|
||||
flex: 1;
|
||||
margin-left: 20px;
|
||||
// margin-left: 20px;
|
||||
}
|
||||
}
|
||||
.products {
|
||||
flex: 1;
|
||||
height: 0;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
}
|
@ -84,15 +84,13 @@ export default () => {
|
||||
return (
|
||||
<MoveBtn onClick={() => setShowShopCart(!showShopCart)}>
|
||||
<View className={styles.main}>
|
||||
<Banner />
|
||||
<View className={styles.search}>
|
||||
<View className={styles.search_collect} onClick={() => goLink('/pages/collection/index')}>
|
||||
我的收藏
|
||||
</View>
|
||||
<View className={styles.search_input} onClick={() => goLink('/pages/searchList/search')}>
|
||||
<Search disabled={true} style={{ width: '263rpx' }} />
|
||||
<Search disabled={true} style={{ width: '263rpx' }} borderRadius='16rpx' placeholder='请输入搜索布料' />
|
||||
</View>
|
||||
</View>
|
||||
<Banner />
|
||||
|
||||
<View className={styles.products}>
|
||||
<SideBar
|
||||
list={kindData.list}
|
||||
|
Loading…
x
Reference in New Issue
Block a user