apply-refound.wxml 1.2 KB

12345678910111213141516171819202122
  1. <!--components/apply-refound/apply-refound.wxml-->
  2. <view class="useRefound-pop" wx:if="{{ refoundStatus }}">
  3. <view class="useRefound-mask" bind:tap="onRefoundClose"></view>
  4. <view class="useRefound-container">
  5. <image bind:tap="onRefoundClose" class="icon-close" src="./images/icon-close.png"></image>
  6. <view class="use-title">申请退款</view>
  7. <view class="use-form__input">
  8. <view class="title"><text class="red">*</text>退款原因</view>
  9. <view class="use-form">
  10. <textarea placeholder="请输入您的退款原因" maxlength="100" bindinput="textareaInput" value="{{ refoundValue }}"></textarea>
  11. <view class="num">{{ refoundValue.length }}/100</view>
  12. </view>
  13. </view>
  14. <view class="use-form__input">
  15. <view class="title"><text class="red">*</text>联系方式</view>
  16. <input placeholder="请输入手机号码" type="number" maxlength="11" bindinput="phoneInput" value="{{ refoundPhone }}"></input>
  17. </view>
  18. <view class="btnSection">
  19. <button type="primary" disabled="{{ submitStatus }}" bind:tap="onRefound">提交申请</button>
  20. </view>
  21. </view>
  22. </view>