report.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <!--pages/report/report.wxml-->
  2. <view class="report-title">
  3. 请选择你想要举报的类型
  4. <text style="color:#FF2323">*</text>
  5. </view>
  6. <view class="report-type">
  7. <text wx:for="{{TypeList}}" wx:key="index" class="{{parmas.reportType==item.value?'report-type-check':''}}" data-value="{{item.value}}" bindtap="checkTypeFun">{{item.name}}</text>
  8. </view>
  9. <view class="more-title">
  10. <text>举报描述</text>
  11. <text>0/200</text>
  12. </view>
  13. <view class="content">
  14. <textarea placeholder="提供更多信息有助于举报被快速处理" placeholder-style="color: rgba(0,0,0,0.4);" value="{{parmas.reason}}" bindinput="getbindinput"></textarea>
  15. </view>
  16. <view class="more-title">
  17. <text>图片证据</text>
  18. <text>最多三张</text>
  19. </view>
  20. <view class="img-box">
  21. <view class="img-view" wx:for="{{imgList}}" wx:key="index">
  22. <image src="{{item}}"></image>
  23. <image src="/static/img/close5.png" bindtap="delFun" data-idx="{{index}}"></image>
  24. </view>
  25. <view class="img-upload" hidden="{{imgList.length>=3}}" bindtap="uploadImg">
  26. <image src="/static/img/addArticle.png"></image>
  27. </view>
  28. </view>
  29. <view class="submit-view">
  30. <text bindtap="submitFun">提交</text>
  31. </view>