| <view class="main"> | 
|   <view class="refund-container"> | 
|       <view class='refund-top radius refund-list'> | 
|        <view wx:for="{{goodsList}}" 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 bind:tap="refundExplain"> | 
|           <view class='name'>退款原因</view>  | 
|           <text class='refundSelect grey'>{{refundSelect}}</text> | 
|           <view class="iconfont icon-youbian"></view> | 
|         </view> | 
|         <view> | 
|           <text class='name'> | 
|             <text>退款金额</text> | 
|             <text class='price'>¥{{money}}</text> | 
|           </text> | 
|         </view> | 
|          <view class='explain'> | 
|           <text class='name'>退款说明</text> | 
|           <view class="textarea"> | 
|             <!-- <textarea  | 
|               class="orders-bottom-text-input radius"  | 
|               bindblur="bindTextAreaBlur"   | 
|               bindinput="formName" | 
|               placeholder="对于本产品退款说明……" | 
|               value='{{textContent}}'  | 
|               wx:if="{{show}}"   | 
|               show-confirm-bar="" | 
|               fixed | 
|               /> | 
|             <view wx:if="{{!show}}" class="orders-bottom-text-input radius">{{textContent}}</view> --> | 
|             <input class='orders-bottom-text-input radius' bindchange="bindTextAreaBlur" type='text' placeholder='对于本产品退款说明……'></input> | 
|           </view> | 
|         </view> | 
|       </view> | 
|     </view> | 
|     <cover-view class='btn-area' bindtap='commit'> | 
|       提交 | 
|     </cover-view>  | 
|   | 
| <view class='popup-container'   wx:if="{{refundchoice}}"> | 
|   <view  class="popup" bind:tap="popupTap"></view> | 
|   <view class='refund-explain'> | 
|     <view class='name'>退款原因</view> | 
|     <radio-group class="radio" bindchange="refundChange"> | 
|       <view class='label-2 {{key==index?"active":""}}' wx:for="{{refundList}}" bindtap="refund" wx:key="ids" | 
|         data-index="{{index}}"  | 
|         data-id="{{item.id}}" | 
|         data-name="{{item.value}}" | 
|       > | 
|         <label> | 
|         <radio id="{{item.value}}"  value="{{item.value}}" checked="{{item.checked}}" hidden></radio> | 
|         <view class='label-2__icon'> | 
|             <view class="icon-checked" style="opacity:{{item.checked ? 1 : 0}}"></view> | 
|         </view> | 
|         <label class="value" for="{{item.value}}"><text>{{item.value}}</text></label> | 
|       </label> | 
|       </view> | 
|     </radio-group> | 
|   </view> | 
|   | 
| </view> | 
| </view> |