feedback.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <!--pages/waterabnormal/feedback/feedback.wxml-->
  2. <view class="feedback">
  3. <mp-navigation-bar loading="{{loading}}" show="{{show}}" animated="{{animated}}" color="{{color}}"
  4. background="{{background}}" title="{{title}}" back="{{false}}">
  5. <view slot="left" bindtap="toBack">
  6. <image class="back" src="/static/img/btn_close.png"></image>
  7. </view>
  8. </mp-navigation-bar>
  9. <view class="title">请根据实际情况进行如下反馈:</view>
  10. <view class="item">
  11. <radio-group bindchange="fieldChange" data-field="feedbackStatus">
  12. <label class="radio">
  13. <radio value="1" checked="true" />
  14. 确认水量持续异常情况为实际情况,无需再次预警。
  15. </label>
  16. <label class="radio">
  17. <radio value="2" />
  18. 用水量确实存在异常,反馈描述如下:
  19. </label>
  20. </radio-group>
  21. <view class="desc">
  22. <textarea placeholder="请输入反馈信息内容" bindinput="contentChange" value="{{formData.feedbackContent}}" maxlength="20" placeholder-style="color: rgba(188, 191, 202, 1)" />
  23. <text class="limit-length">{{formData.feedbackContent.length}}/20</text>
  24. </view>
  25. <button class="btn-big" bindtap="submit">提交</button>
  26. </view>
  27. </view>