cell.wxml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <view class="page">
  2. <view class="wrap1">
  3. <view class="layer3">
  4. <view class="mod1">
  5. <view class="mod2">
  6. <image src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng859bb3e0470362547a96eee0c6b7548d76441bf15d63701f3c42bbbac2fe1d69" class="icon3"></image>
  7. <text lines="1" decode="true" class="word2">{{taskInfo.title}}</text>
  8. </view>
  9. <view class="mod3">
  10. <view class="bd2" bindtap="goto">
  11. <text lines="1" class="txt1">下单码</text>
  12. </view>
  13. <view class="bd3">
  14. <text lines="1" class="word3">定位修正</text>
  15. </view>
  16. <view class="bd4" bindtap="show">
  17. <text lines="1" class="info4">安装状态</text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="layer4">
  23. <view class="outer3">
  24. <view class="bd5">
  25. <text lines="1" class="info5">格口列表</text>
  26. <text lines="1" class="info6">共{{taskInfo.num}}格</text>
  27. </view>
  28. <view class="bd6"></view>
  29. </view>
  30. </view>
  31. <view class="layer5" wx:for="{{taskInfo.list}}" wx:key="index">
  32. <view class="section2">
  33. <view class="mod4">
  34. <text lines="1" class="txt2">{{item.external_cabinet}}</text>
  35. </view>
  36. <view class="mod5">
  37. <text lines="1" class="info7">{{item.external_cabinet}}号格口</text>
  38. <view class="outer4">
  39. <view class="wrap2"></view>
  40. <text lines="1" class="txt3">{{item.status}}</text>
  41. </view>
  42. </view>
  43. <view class="mod6">
  44. <text lines="1" class="txt4">最近打开</text>
  45. </view>
  46. <navigator url="/pages/cabinet/celldetail?id={{item.id}}">
  47. <view class="mod7">
  48. <text lines="1" class="txt5">操作</text>
  49. </view>
  50. </navigator>
  51. </view>
  52. <view class="section3">
  53. <view class="bd7"></view>
  54. </view>
  55. </view>
  56. </view>
  57. <view class="layer11">
  58. <text lines="1" class="word12">开启全部格口检修</text>
  59. </view>
  60. <view class="wrap3" wx:if="{{show}}" bindtap="show">
  61. <view class="mod10">
  62. <view class="mod11">
  63. <text lines="1" class="word13">安装状态</text>
  64. <text lines="1" class="word14">当前状态:{{taskInfo.status==1?'已安装':'未安装'}}</text>
  65. <view class="layer12">
  66. <button bindtap="onClick" class="outer12">
  67. <text lines="1" class="info14">取消</text>
  68. </button>
  69. <view class="outer13">
  70. <text lines="1" class="info15">已安装</text>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>