checkProcessReportEdit.wxml 1.1 KB

123456789101112131415161718192021222324
  1. <!--pages/deviceCheck/report/edit/checkReportEdit.wxml-->
  2. <page>
  3. <view class="viewBody">
  4. <view class="report-btn" bindtap='toReportHandle'>
  5. <text class="new-report-btn-text">提交</text>
  6. </view>
  7. <view style="padding-left: 10rpx;margin-top: 20rpx;">
  8. <text style="font-size: 1rem;">处理意见</text>
  9. </view>
  10. <view style="background-color: whitesmoke; border-style: solid ;border-width: 1px; border-color: gray;">
  11. <textarea class="processSuggest" value="{{processSuggest}}" placeholder="{{placeholder}}" placeholder-class="placeholder" bindinput="processSuggestInput"></textarea>
  12. </view>
  13. <view>
  14. <view class='photoBox'>
  15. <view class='scroll-list'>
  16. <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
  17. <image class='item-img' src='{{photo.path}}' data-index="{{index}}" data-type="{{photo.type}}" bindlongpress="deleteImage" bindtap="{{photo.type==0?'takePhoto':'editPhoto'}}" mode='aspectFill'></image>
  18. </block>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </page>