Commit 4a27cbffa6683b79198e90ddaedfc7c1b2a2f09a

Authored by yvan.ni
1 parent 9608876b

商品评价的图片

pages/goods/goodsInfo/goodsInfo.wxml
... ... @@ -616,19 +616,19 @@
616 616 </text>
617 617 </view>
618 618 <view class="img-ul">
619   - <view class="img-li" wx:for="{{item.img}}" wx:key="{{index}}">
620   - <image bindtap="previewCommentImgs" class="wh100" data-cidx="{{cIdx}}"
621   - data-id="{{index}}" src="{{iurl}}{{item}}"></image>
622   - </view>
623   - </view>
624 619  
625   - <view class="iddle-goods-img" wx:if="{{item.source_type==0}}">
626   - <image bindtap="previewCommentImgs" class="goods-img" wx:for="{{item.img}}" data-cidx="{{cIdx}}" data-id="{{index}}" src="{{iurl}}{{item}}"></image>
627   - </view>
628   - <view class="iddle-goods-img" wx:else>
629   - <image bindtap="previewCommentImgs" class="goods-img"
630   - wx:for="{{item.weapp_img}}" wx:if="{{aitem.length>10}}"
631   - wx:for-item="aitem" data-cidx="{{cIdx}}" data-id="{{index}}" src="{{aitem}}"></image>
  620 + <block wx:if="{{item.source_type==0}}">
  621 + <view class="img-li" wx:for="{{item.img}}" wx:key="{{index}}">
  622 + <image bindtap="previewCommentImgs" class="wh100" data-cidx="{{cIdx}}"
  623 + data-id="{{index}}" src="{{iurl}}{{item}}"></image>
  624 + </view>
  625 + </block>
  626 + <block wx:if="{{item.source_type==1}}">
  627 + <view class="img-li" wx:for="{{item.img}}" wx:if="{{aitem.length>10}}" wx:key="{{index}}" wx:for-item="aitem">
  628 + <image bindtap="previewCommentImgs" class="wh100" data-cidx="{{cIdx}}"
  629 + data-id="{{index}}" src="{{aitem}}"></image>
  630 + </view>
  631 + </block>
632 632 </view>
633 633  
634 634 <view class="z_parameter">
... ...
pages/user/return_goods_info/return_goods_info.wxml
... ... @@ -13,6 +13,11 @@
13 13 <view class="now-price co-red">退款金额 : ¥{{return_goods.back_money}}</view>
14 14 </view>
15 15 </view>
  16 +
  17 +
  18 +
  19 +
  20 +
16 21 <view class="apply-mes pd-bg-fff">
17 22 <view class="apply-item">
18 23 <view class="apply-til">售后信息</view>
... ...