You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.9 KiB
39 lines
1.9 KiB
2 months ago
|
<!--subpages/mine/repairList/repairList.wxml-->
|
||
|
<view class="card mt-14" wx:for="{{list}}">
|
||
|
<view class="position flex">
|
||
|
<image src="../../../images/icon/event.png" mode="" class="icon-40 mr-10" />
|
||
|
<view wx:if="{{item.positionType === 1}}">{{item.position}}</view>
|
||
|
<view wx:if="{{item.positionType === 0}}">{{item.apartmentName}}{{item.position}}</view>
|
||
|
</view>
|
||
|
<view class="bg-gary mt-24">
|
||
|
<view class="m-top-16 flex items-center">
|
||
|
<view class="label mr-30">问题描述</view>
|
||
|
<view class="value">{{item.faultDescribe}}</view>
|
||
|
</view>
|
||
|
<view class="m-top-16 flex items-center">
|
||
|
<view class="label mr-30">图片</view>
|
||
|
<view class="flex flex-sa">
|
||
|
<image src="{{itemC.url}}" style="width: 140rpx;height: 140rpx;" mode="" wx:for="{{item.images}}" wx:for-item="itemC" wx:if="{{itemC.type != 'video'}}"/>
|
||
|
<!-- <video src="{{itemC.url}}" style="width: 140rpx;height: 140rpx;" wx:if="{{itemC.type === 'video'}}" wx:for="{{item.images}}" wx:for-item="itemC" /> -->
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="m-top-16 flex items-center">
|
||
|
<view class="label mr-30">提报时间</view>
|
||
|
<view class="value">{{item.createTime}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view>
|
||
|
<view class="flex pl-16 mt-24">
|
||
|
<view class="mr-30">处理状态</view>
|
||
|
<view class="value" style="color:{{item.state === '待处理'?'#ff9f00':''}}" >{{item.state}}</view>
|
||
|
</view>
|
||
|
<view wx:if="{{item.handleImages.length != 0}}">
|
||
|
<view>图片视频</view>
|
||
|
<image src="{{itemC.url}}" style="width: 140rpx;height: 140rpx;" mode="" wx:for="{{item.handleImages}}" wx:for-item="itemC" />
|
||
|
</view>
|
||
|
<view wx:if="{{item.handleDescribe}}">
|
||
|
<view>处理说明</view>
|
||
|
<view class="value">{{item.handleDescribe}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|