feedback.wxml 959 B

12345678910111213141516171819202122232425
  1. <form bindsubmit="saveFeedback">
  2. <picker bindchange="bindPickerChange" name="feedType" 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="/static/images/pickerArrow.png"></image>
  7. </view>
  8. </view>
  9. </picker>
  10. <view class="fb-body">
  11. <textarea class="content" name="content" placeholder="对我们网站、商品、服务,你还有什么建议吗?你还希望买到什么?请告诉我们..." />
  12. <view class="text-count">0/500</view>
  13. </view>
  14. <view class="fb-mobile">
  15. <view class="label">手机号码</view>
  16. <view class="mobile-box">
  17. <input class="mobile" name="mobile" placeholder="方便我们与你联系" />
  18. <image class="clear-icon" src="/static/images/clear-fb.png"></image>
  19. </view>
  20. </view>
  21. <button form-type='submit' class="fb-btn">提交</button>
  22. </form>