feedback.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <view class="container">
  2. <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
  3. <view class="picker">
  4. <view class="fb-type">
  5. <view class="type-label">{{array[index]}}</view>
  6. <image class="type-icon" src="http://yanxuan.nosdn.127.net/hxm/yanxuan-wap/p/20161201/style/img/icon-normal/pickerArrow-a8b918f05f.png"></image>
  7. </view>
  8. </view>
  9. </picker>
  10. <view class="fb-body">
  11. <textarea class="content" placeholder="对我们网站、商品、服务,你还有什么建议吗?你还希望在严选上买到什么?请告诉我们..." bindinput ="contentInput" maxlength="500" auto-focus="true" value="{{content}}"/>
  12. <view class="text-count">{{contentLength}}/500</view>
  13. </view>
  14. <view class="fb-mobile">
  15. <view class="label">手机号码</view>
  16. <view class="mobile-box">
  17. <input class="mobile" maxlength="11" type="number" placeholder="方便我们与你联系" bindinput ="mobileInput" value="{{mobile}}"/>
  18. <!--
  19. <image class="clear-icon" src="https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/150647657fcdd0.png" bindtap="cleanMobile"></image>
  20. -->
  21. </view>
  22. </view>
  23. <view class="fb-btn" bindtap="sbmitFeedback">提交</view>
  24. </view>