Commit ad77b6097f51c6fb0f9f25564313d9422d2ee366
1 parent
13198dc6
幸运购商品详情和会员中心幸运购查看奖励修改
Showing
3 changed files
with
11 additions
and
6 deletions
packageC/pages/luckyGo/luckyGo_goodsInfo/luckyGo_goodsInfo.wxml
... | ... | @@ -1555,7 +1555,7 @@ |
1555 | 1555 | <!-- 优惠券奖励 --> |
1556 | 1556 | <block wx:if="{{item.type == 3}}"> |
1557 | 1557 | <view class="popup-list-item" wx:for="{{item.couponList}}" wx:for-item="i"> |
1558 | - <view class="img-container"><image class="img-block" src="../../../../images/bk.png"></image></view> | |
1558 | + <view class="img-container"><image class="img-block" src="{{iurl + 'miniapp/images/luckDraw/yhq.png'}}"></image></view> | |
1559 | 1559 | <view class="f1 pdl20"> |
1560 | 1560 | <view class="ellipsis-2 popup-title">优惠券-{{i.name}}</view> |
1561 | 1561 | <view class="fs24 t-r pdt16 c-7b">数量:<text class="c-red">{{i.num}}</text></view> |
... | ... | @@ -1565,7 +1565,7 @@ |
1565 | 1565 | <!-- 服务项目奖励 --> |
1566 | 1566 | <block wx:elif="{{item.type == 4}}"> |
1567 | 1567 | <view class="popup-list-item" wx:for="{{item.serviceList}}" wx:for-item="i"> |
1568 | - <view class="img-container"><image class="img-block" src="../../../../images/bk.png"></image></view> | |
1568 | + <view class="img-container"><image class="img-block" src="{{iurl + 'miniapp/images/luckDraw/fw.png'}}"></image></view> | |
1569 | 1569 | <view class="f1 pdl20"> |
1570 | 1570 | <view class="ellipsis-2 popup-title">服务项目-{{i.name}}</view> |
1571 | 1571 | <view class="fs24 t-r pdt16 c-7b">数量:<text class="c-red">{{i.num}}</text></view> |
... | ... | @@ -1575,7 +1575,7 @@ |
1575 | 1575 | <!-- 预存金额 --> |
1576 | 1576 | <block wx:elif="{{item.type == 5}}"> |
1577 | 1577 | <view class="popup-list-item"> |
1578 | - <view class="img-container"><image class="img-block" src="../../../../images/bk.png"></image></view> | |
1578 | + <view class="img-container"><image class="img-block" src="{{iurl + 'miniapp/images/luckDraw/jf.png'}}"></image></view> | |
1579 | 1579 | <view class="f1 pdl20"> |
1580 | 1580 | <view class="ellipsis-2 popup-title">{{luckGoInfo[item.name]}}</view> |
1581 | 1581 | <view class="fs24 t-r pdt16 c-7b">金额:<text class="c-red">{{filters.div100(luckGoInfo[item.num])}}</text></view> |
... | ... | @@ -1585,7 +1585,10 @@ |
1585 | 1585 | <!-- 其他奖励 --> |
1586 | 1586 | <block wx:else> |
1587 | 1587 | <view class="popup-list-item"> |
1588 | - <view class="img-container"><image class="img-block" src="../../../../images/bk.png"></image></view> | |
1588 | + <view class="img-container"> | |
1589 | + <image class="img-block" src="{{iurl + 'miniapp/images/luckDraw/lb.png'}}" wx:if="{{item.type == 1}}"></image> | |
1590 | + <image class="img-block" src="{{iurl + 'miniapp/images/luckDraw/czz.png'}}" wx:elif="{{item.type == 2}}"></image> | |
1591 | + </view> | |
1589 | 1592 | <view class="f1 pdl20"> |
1590 | 1593 | <view class="ellipsis-2 popup-title">{{item.name}}</view> |
1591 | 1594 | <view class="fs24 t-r pdt16 c-7b">数量:<text class="c-red">{{luckGoInfo[item.num]}}</text></view> | ... | ... |
packageC/pages/luckyGo/luckyGo_goodsInfo/luckyGo_goodsInfo.wxss
... | ... | @@ -3094,12 +3094,13 @@ button.custom-service::after{ |
3094 | 3094 | |
3095 | 3095 | .popup-list-item { |
3096 | 3096 | display: flex; |
3097 | + align-items: center; | |
3097 | 3098 | padding: 20rpx; |
3098 | 3099 | } |
3099 | 3100 | |
3100 | 3101 | .popup-list-item .img-container { |
3101 | - width: 140rpx; | |
3102 | - height: 140rpx; | |
3102 | + width: 120rpx; | |
3103 | + height: 100rpx; | |
3103 | 3104 | } |
3104 | 3105 | |
3105 | 3106 | .popup-title { | ... | ... |