|
|
@@ -16,10 +16,11 @@
|
|
|
<view class="main-content" :style="{ paddingTop: (statusBarHeight + 44) + 'px' }">
|
|
|
<!-- 顶部固定区域:导航栏背景和搜索框 -->
|
|
|
<view class="fixed-header-area" :style="{
|
|
|
- paddingTop: statusBarHeight + 44 + 'px',
|
|
|
- backgroundImage: scrollTop > 0 ? 'url(/pages-sell/static/top-bg.png)' : 'none',
|
|
|
- backgroundPosition: `center top`
|
|
|
+ paddingTop: statusBarHeight + 44 + 'px'
|
|
|
}">
|
|
|
+ <!-- 小程序背景图兼容:使用绝对定位的 image 替代 backgroundImage -->
|
|
|
+ <image class="fixed-bg-img" v-show="scrollTop > 0" src="/pages-sell/static/top-bg.png" mode="widthFix"></image>
|
|
|
+
|
|
|
<view class="search-wrapper" @click="navigateTo('/pages-sell/pages/search')">
|
|
|
<view class="search-box-uview">
|
|
|
<u-search placeholder="搜索关键字" :show-action="false" bg-color="transparent" height="40"
|
|
|
@@ -458,13 +459,21 @@ export default {
|
|
|
left: 0;
|
|
|
width: 100%;
|
|
|
z-index: 99;
|
|
|
- background-size: 100% auto;
|
|
|
- background-repeat: no-repeat;
|
|
|
padding-left: 24rpx;
|
|
|
padding-right: 24rpx;
|
|
|
padding-bottom: 16rpx;
|
|
|
box-sizing: border-box;
|
|
|
transition: background-color 0.2s;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.fixed-bg-img {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ z-index: -1;
|
|
|
+ display: block;
|
|
|
}
|
|
|
|
|
|
.search-placeholder {
|