| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--pages/deviceCheck/process/checkProcessList.wxml-->
- <page>
- <view class="viewBody">
- <view class="lineTitle">
- <view class="title">
- <text>处理状态:</text>
- </view>
- <view class="content">
- <text>{{processInfo.processStatusName}}</text>
- </view>
- </view>
- <view class="lineTitle">
- <view class="title">
- <text>处理人:</text>
- </view>
- <view class="content">
- <text>{{processInfo.createUser}}</text>
- </view>
- </view>
- <view class="lineTitle">
- <view class="title">
- <text>处理时间:</text>
- </view>
- <view class="content">
- <text>{{processInfo.createTimeText}}</text>
- </view>
- </view>
- <view class="lineTitle">
- <view class="title">
- <text>处理意见:</text>
- </view>
- </view>
- <view class="processSuggest">
- <text>{{processInfo.processSuggest}}</text>
- </view>
- <view >
- <view class='photoBox'>
- <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
- <image class='item-img' data-path="{{photo}}" src='{{imageUrl}}{{photo}}' bindtap="photoView" mode='aspectFill'></image>
- </block>
- </view>
- </view>
- </view>
- </page>
|