mysuggest.wxml 645 B

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