checkProcessInfo.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!--pages/deviceCheck/process/checkProcessList.wxml-->
  2. <page>
  3. <view class="viewBody">
  4. <view class="lineTitle">
  5. <view class="title">
  6. <text>处理状态:</text>
  7. </view>
  8. <view class="content">
  9. <text>{{processInfo.processStatusName}}</text>
  10. </view>
  11. </view>
  12. <view class="lineTitle">
  13. <view class="title">
  14. <text>处理人:</text>
  15. </view>
  16. <view class="content">
  17. <text>{{processInfo.createUser}}</text>
  18. </view>
  19. </view>
  20. <view class="lineTitle">
  21. <view class="title">
  22. <text>处理时间:</text>
  23. </view>
  24. <view class="content">
  25. <text>{{processInfo.createTimeText}}</text>
  26. </view>
  27. </view>
  28. <view class="lineTitle">
  29. <view class="title">
  30. <text>处理意见:</text>
  31. </view>
  32. </view>
  33. <view class="processSuggest">
  34. <text>{{processInfo.processSuggest}}</text>
  35. </view>
  36. <view >
  37. <view class='photoBox'>
  38. <block wx:for="{{photos}}" wx:for-item="photo" wx:key="key">
  39. <image class='item-img' data-path="{{photo}}" src='{{imageUrl}}{{photo}}' bindtap="photoView" mode='aspectFill'></image>
  40. </block>
  41. </view>
  42. </view>
  43. </view>
  44. </page>