| | |
| | | <view>
|
| | | <view class="content">
|
| | | <view class="name_wrap">
|
| | | <view class="name">{{info.deviceName}}</view> |
| | | <view class="name">{{info.deviceName}} {{info.deviceCode || ''}}</view> |
| | | <view class="status" v-if="info.status == 0">正常</view> |
| | | <view class="status red" v-if="info.status == 1">损坏</view> |
| | | <view class="status red" v-if="info.status == 2">报废</view>
|
| | |
| | | <view class="title">运维备注</view> |
| | | <view class="file_list"> |
| | | <view class="file" v-for="item in info.multifileList"> |
| | | <image v-if="item.type == 0" :src="item.fileurlFull" mode="widthFix"></image> |
| | | <image v-if="item.type == 0" :src="item.fileurlFull" mode="aspectFill"></image> |
| | | <video v-if="item.type == 1" :src="item.fileurlFull" :controls="false"></video> |
| | | </view> |
| | | </view> |
| | |
| | | } |
| | | image,video{ |
| | | width: 156rpx; |
| | | height: 156rpx; |
| | | } |
| | | } |
| | | .desc{ |