12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <view class="page">
- <view class="wrap1">
- <view class="layer3">
- <view class="mod1">
- <view class="mod2">
- <image src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPng859bb3e0470362547a96eee0c6b7548d76441bf15d63701f3c42bbbac2fe1d69" class="icon3"></image>
- <text lines="1" decode="true" class="word2">{{taskInfo.title}}</text>
- </view>
- <view class="mod3">
- <view class="bd2" bindtap="goto">
- <text lines="1" class="txt1">下单码</text>
- </view>
- <view class="bd3">
- <text lines="1" class="word3">定位修正</text>
- </view>
- <view class="bd4" bindtap="show">
- <text lines="1" class="info4">安装状态</text>
- </view>
- </view>
- </view>
- </view>
- <view class="layer4">
- <view class="outer3">
- <view class="bd5">
- <text lines="1" class="info5">格口列表</text>
- <text lines="1" class="info6">共{{taskInfo.num}}格</text>
- </view>
- <view class="bd6"></view>
- </view>
- </view>
- <view class="layer5" wx:for="{{taskInfo.list}}" wx:key="index">
- <view class="section2">
- <view class="mod4">
- <text lines="1" class="txt2">{{item.external_cabinet}}</text>
- </view>
- <view class="mod5">
- <text lines="1" class="info7">{{item.external_cabinet}}号格口</text>
- <view class="outer4">
- <view class="wrap2"></view>
- <text lines="1" class="txt3">{{item.status}}</text>
- </view>
- </view>
- <view class="mod6">
- <text lines="1" class="txt4">最近打开</text>
- </view>
- <navigator url="/pages/cabinet/celldetail?id={{item.id}}">
- <view class="mod7">
- <text lines="1" class="txt5">操作</text>
- </view>
- </navigator>
- </view>
- <view class="section3">
- <view class="bd7"></view>
- </view>
- </view>
- </view>
- <view class="layer11">
- <text lines="1" class="word12">开启全部格口检修</text>
- </view>
- <view class="wrap3" wx:if="{{show}}" bindtap="show">
- <view class="mod10">
- <view class="mod11">
- <text lines="1" class="word13">安装状态</text>
- <text lines="1" class="word14">当前状态:{{taskInfo.status==1?'已安装':'未安装'}}</text>
- <view class="layer12">
- <button bindtap="onClick" class="outer12">
- <text lines="1" class="info14">取消</text>
- </button>
- <view class="outer13">
- <text lines="1" class="info15">已安装</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|