| <view class="main"> | 
|   <view class="refund-container"> | 
|       <view class='refund-top radius refund-list'>  | 
|        <view wx:for="{{productList}}" wx:key="ids" data-id="{{item.productId}}" data-status="{{item.status}}"  data-delflag="{{item.delflag}}" bindtap="intoGoods"> | 
|          <image src="{{item.imgMobile}}" class='refund-image'></image> | 
|           <view class='refund-info'>  | 
|             <text class='name'>{{item.name}}</text> | 
|             <text class='grey'>规格:{{item.sku}}</text> | 
|           </view> | 
|        </view> | 
|       </view> | 
|       <view class='refund-content radius refund-list'> | 
|         <view> | 
|           <text class='name' bindtap='wantRefund' data-status='1'>我要退款(无需退货)</text> | 
|           <view class="iconfont icon-youbian"></view> | 
|         </view> | 
|         <view wx:if="{{shippingMethod == 1 && orderStatus == 3}}"> | 
|           <text class='name' bindtap='wantRefund' data-status='2' >我要退货退款</text> | 
|           <view class="iconfont icon-youbian"></view> | 
|         </view> | 
|       </view> | 
|     </view> | 
| </view> |