Browse Source

完成与远程Xfy分支的合并

pull/3/head
徐飞洋 2 months ago
parent
commit
63593bcd41
  1. 10
      custom-tab-bar/index.wxml
  2. 9
      pages/index/index.wxss

10
custom-tab-bar/index.wxml

@ -42,15 +42,7 @@
<view class="tab-bar-text">入驻</view> <view class="tab-bar-text">入驻</view>
</view> </view>
<view class="tab-bar-item {{selected === 'favorites' ? 'active' : ''}}"
data-path="pages/favorites/index"
data-key="favorites"
bindtap="switchTab">
<view class="tab-bar-icon">
<view class="tab-bar-badge" wx:if="{{badges['favorites']}}">{{badges['favorites']}}</view>
</view>
<view class="tab-bar-text">收藏</view>
</view>
<view class="tab-bar-item {{selected === 'profile' ? 'active' : ''}}" <view class="tab-bar-item {{selected === 'profile' ? 'active' : ''}}"
data-path="pages/profile/index" data-path="pages/profile/index"

9
pages/index/index.wxss

@ -1319,7 +1319,7 @@ wx-button:not([size=mini]) {
/* 商品标题 */ /* 商品标题 */
.product-title { .product-title {
font-size: 26rpx; font-size: 26rpx;
color: #000000ff; color: #000000;
line-height: 1.4; line-height: 1.4;
height: 72rpx; /* 固定标题高度 */ height: 72rpx; /* 固定标题高度 */
overflow: hidden; overflow: hidden;
@ -1328,18 +1328,19 @@ wx-button:not([size=mini]) {
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
margin-bottom: 8rpx; margin-bottom: 8rpx;
font-weight: 500; font-weight: 700;
} }
/* 商品规格 */ /* 商品规格 */
.product-spec { .product-spec {
font-size: 22rpx; font-size: 22rpx;
color: #797878ff; color: #333333;
height: 32rpx; /* 固定规格高度 */ height: 32rpx; /* 固定规格高度 */
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
margin-bottom: 8rpx; margin-bottom: 10rpx;
line-height: 1.3;
} }
/* 价格区域 - 淘宝风格突出显示 */ /* 价格区域 - 淘宝风格突出显示 */

Loading…
Cancel
Save