1234567891011121314151617181920 |
- <!--pages/meeting-inspection-abnormal/meeting-inspection-abnormal.wxml-->
- <view class="upload-pic">
- <view class="toolBar">
- <text>图片</text>
- <image class="upload-icon" src="{{imgPath}}/inspection-upload.png" bindtap="chooseImage"></image>
- </view>
- <view class="imageList">
- <view class="imageItem" wx:for="{{uploadList}}" wx:for-item="item" wx:key="i" wx:index="index">
- <image class="img" src="{{item}}"></image>
- <image class="removeBtn" src="{{imgPath}}/inspection-upload-remove.png" data-index="{{index}}" bindtap="removeImg"></image>
- </view>
- </view>
- </view>
- <view class="result-desc">
- <view>巡检结果描述</view>
- <textarea class="desc" placeholder="请输入描述" placeholder-style="color:#999999;" bindinput="forDescription"></textarea>
- </view>
- <view class="bottom-save">
- <view class="save-btn" bindtap="submitAbnormal">提交</view>
- </view>
|