Browse Source

fix: 修复WXML编译错误和优化底部提示样式

- 移除index.wxml中的Git冲突标记
- 优化没有更多商品了提示的显示样式
- 添加底部额外空白空间确保提示完整显示
pull/1/head
徐飞洋 2 months ago
parent
commit
e9d56a221c
  1. 3
      pages/index/index.wxml
  2. 22
      pages/index/index.wxss

3
pages/index/index.wxml

@ -208,9 +208,7 @@
data-index="0" data-index="0"
></image> ></image>
<view wx:if="{{item.supplyStatus === '预售'}}" class="promo-tag presale">预售</view> <view wx:if="{{item.supplyStatus === '预售'}}" class="promo-tag presale">预售</view>
<view wx:if="{{item.sourceType}}" class="promo-tag source">一手货源</view>
</view> </view>
<<<<<<< HEAD
<view class="product-info"> <view class="product-info">
<view class="product-title">{{item.name}}</view> <view class="product-title">{{item.name}}</view>
<view class="product-spec">{{item.specification || '无'}}<text wx:if="{{item.yolk && item.yolk !== '无'}}"> | {{item.yolk}}</text></view> <view class="product-spec">{{item.specification || '无'}}<text wx:if="{{item.yolk && item.yolk !== '无'}}"> | {{item.yolk}}</text></view>
@ -268,7 +266,6 @@
data-index="0" data-index="0"
></image> ></image>
<view wx:if="{{item.supplyStatus === '预售'}}" class="promo-tag presale">预售</view> <view wx:if="{{item.supplyStatus === '预售'}}" class="promo-tag presale">预售</view>
<view wx:if="{{item.sourceType}}" class="promo-tag source">一手货源</view>
</view> </view>
<view class="product-info"> <view class="product-info">
<view class="product-title">{{item.name}}</view> <view class="product-title">{{item.name}}</view>

22
pages/index/index.wxss

@ -1234,29 +1234,23 @@ wx-button:not([size=mini]) {
/* 无更多数据 */ /* 无更多数据 */
.no-more-data { .no-more-data {
text-align: center; display: flex;
padding: 30rpx 0; align-items: center;
justify-content: center;
padding: 30rpx 20rpx;
padding-bottom: 50rpx;
color: #999; color: #999;
font-size: 26rpx; font-size: 26rpx;
position: relative; gap: 20rpx;
} }
.no-more-data::before, .no-more-data::before,
.no-more-data::after { .no-more-data::after {
content: ''; content: '';
position: absolute; flex: 1;
top: 50%;
width: 100rpx;
height: 1rpx; height: 1rpx;
background: #e5e5e5; background: #e5e5e5;
} max-width: 80rpx;
.no-more-data::before {
left: 25%;
}
.no-more-data::after {
right: 25%;
} }
/* 广告位样式 */ /* 广告位样式 */

Loading…
Cancel
Save