12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <view class="page">
- <view class="box1">
- <view class="wrap3">
- <view class="outer3">
- <text lines="1" class="txt2">{{taskInfo.external_cabinet}}号格口状态:{{taskInfo.status}}</text>
- <view class="main1">
- <view class="group1">
- <text lines="1" class="word3" bindtap="show1">检修开柜</text>
- </view>
- <view class="group2">
- <text lines="1" wx:if="{{cold==1}}" class="info2" bindtap="show">冻结格口</text>
- <text lines="1" wx:if="{{cold==2}}" class="info2" bindtap="show3">解冻格口</text>
- </view>
- </view>
- </view>
- </view>
- <view class="wrap4">
- <view class="box2">
- <text lines="1" class="word4">格口历史状态</text>
- <view class="box3"></view>
- </view>
- </view>
- <view class="wrap9" wx:for="{{taskInfo.list}}">
- <view class="main7">
- <view class="box7">
- <text lines="1" class="info8">{{item.user_title}}</text>
- <text lines="1" class="word13">{{item.name_type}}:{{item.name}}</text>
- </view>
- <view class="box8">
- <text lines="1" class="word14">状态更新:{{item.device_title}}</text>
- <text lines="1" decode="true" class="word15">{{item.created}}</text>
- </view>
- <text lines="1" class="txt6">操作原因:{{item.remark}}</text>
- </view>
- </view>
- </view>
- <view class="box9" wx:if="{{show}}">
- <view class="bd1">
- <view class="bd2">
- <text lines="1" class="info9">{{title}}</text>
- <view class="mod1">
- <van-cell-group>
- <van-field value="{{ message }}" custom-style="height:200rpx;background-color:#F6F6F6" bind:change="onChange" maxlength="150" type="textarea" placeholder="请输入操作原因" border="{{ false }}" />
- </van-cell-group>
- </view>
- <view class="mod2">
- <button class="layer3" bindtap="show">
- <text lines="1" class="info10" >取消</text>
- </button>
- <view class="layer4">
- <text lines="1" class="txt7" bindtap="opentask">{{edit}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|