writeComplaint.wxml 848 B

12345678910111213141516171819
  1. <!--pages/writeComplaint/writeComplaint.wxml-->
  2. <view>
  3. <!-- 投诉标题 -->
  4. <view class="complaintWrapper">
  5. <text class="complaintTitle">投诉标题</text>
  6. <textarea name="投诉标题" cols="30" rows="10" maxlength="50" placeholder="不超过50字" class="titleInput" bindinput="getComplaintTitle"></textarea>
  7. </view>
  8. <!-- 投诉内容 -->
  9. <view class="complaintWrapper">
  10. <text class="complaintTitle">投诉内容</text>
  11. <textarea name="投诉内容" cols="30" rows="10" maxlength="512" placeholder="不超过512字" class="contentInput" bindinput="getComplaintContent"></textarea>
  12. </view>
  13. </view>
  14. <!-- 取消和提交按钮 -->
  15. <view class="suggestBtn">
  16. <view class="confirmBtn" bindtap="toCancel">取消</view>
  17. <view class="confirmBtn" bindtap="toConfirm">提交</view>
  18. </view>