feedback.wxml 1.3 KB

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