forBack.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="container">
  2. <view class="title">您遇到了哪方面的问题</view>
  3. <view class="radio-box">
  4. <view class="radio-view {{index == curRadioIndex ? 'curRadio' : ''}}" wx:for="{{radioList}}" wx:key="index" data-index="{{index}}" bindtap="getRadio">
  5. {{item.name}}
  6. </view>
  7. </view>
  8. <view class="change-view">
  9. <view class="curSchool" wx:if="{{radioType == 'school'}}">当前学校:智慧汉阳校区</view>
  10. <view class="picker-view" wx:elif="{{radioType == 'select'}}">
  11. <view class="section">
  12. <view class="section__title">请选择板块:</view>
  13. <picker bindchange="bindPickerChange" value="{{plateIndex}}" range="{{plateList}}">
  14. <view class="picker">
  15. {{plateList[plateIndex]}}
  16. </view>
  17. </picker>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="line"></view>
  22. <view class="title">问题描述</view>
  23. <textarea class="textarea" placeholder="请详细描述你遇到的问题与建议..." maxlength="200"></textarea>
  24. <view class="line"></view>
  25. <view class="title">上传图片</view>
  26. <view class="uploadImg-task-view">
  27. <view class="my-img-view" wx:for="{{1}}" wx:key="index">
  28. <view class="new-task-img">
  29. <image src="/images/logo.png"></image>
  30. </view>
  31. <view class="del-btn">X</view>
  32. </view>
  33. <view class="upload-btn" bindtap="uploadTap">
  34. <view style="margin-top:30rpx">
  35. <image src="/images/addFile.png"></image>
  36. <view>添加图片</view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="submit-btn">提交</view>
  41. </view>