mysuggest.wxml 682 B

1234567891011121314151617181920212223
  1. <!--pages/mysuggest/mysuggest.wxml-->
  2. <import src="../../module/header.wxml"/>
  3. <scroll-view
  4. class="conent"
  5. style="height:{{windowh}}rpx;"
  6. scroll-y="{{selectbar==''?'true':'false'}}"
  7. bindscrolltolower="{{hasloadall?'':'getMyBuy'}}"
  8. >
  9. <template
  10. is="header"
  11. data="{{title:'意见反馈',headerheight:headerheight,hasback:true}}"
  12. />
  13. <view class="mysuggest_c">
  14. <textarea
  15. class="mysuggest_area"
  16. placeholder="你的满意是我们前进的动力"
  17. placeholder-style="color:rgba(183, 183, 183, 1)"
  18. maxlength="400"
  19. bindinput="getSuggestValue"
  20. name="textarea"/>
  21. <view bindtap="subSuggest" class="mysuggest_bt">提交反馈</view>
  22. </view>
  23. </scroll-view>