apply-refound.wxml 1.1 KB

12345678910111213141516171819
  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">
  8. <textarea placeholder="请输入您的退款原因" placeholder-style="color: #AAA" maxlength="100" bindinput="textareaInput" value="{{ refoundValue }}"></textarea>
  9. <view class="num">{{ refoundValue.length }}/100</view>
  10. </view>
  11. <view class="use-form__input">
  12. <view class="title"><text class="red">*</text>联系方式 <text class="sencd">(必填)</text></view>
  13. <input placeholder="请输入手机号码" placeholder-style="color: #AAA" type="number" maxlength="11" bindinput="phoneInput" value="{{ refoundPhone }}"></input>
  14. </view>
  15. <view class="btnSection">
  16. <button type="primary" catch:tap="onRefound">提交申请</button>
  17. </view>
  18. </view>
  19. </view>