| 123456789101112131415161718192021222324 |
- <!--pages/deviceCheck/report/edit/checkReportEdit.wxml-->
- <page>
- <view class="viewBody">
- <view class="report-btn" bindtap='toReportHandle'>
- <text class="new-report-btn-text">提交</text>
- </view>
- <view style="padding-left: 10rpx;margin-top: 20rpx;">
- <text style="font-size: 1rem;">处理意见</text>
- </view>
- <view style="background-color: whitesmoke; border-style: solid ;border-width: 1px; border-color: gray;">
- <textarea class="processSuggest" value="{{processSuggest}}" placeholder="{{placeholder}}" placeholder-class="placeholder" bindinput="processSuggestInput"></textarea>
- </view>
- <view>
- <view class='photoBox'>
- <view class='scroll-list'>
- <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
- <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>
- </block>
- </view>
- </view>
- </view>
- </view>
- </page>
|