| 123456789101112131415161718192021222324252627282930313233343536 |
- <!--pages/deviceCheck/deviceCheck.wxml-->
- <view class="viewBox">
- <view class="list-box">
- <scroll-view scroll-y="true" class="sv">
- <block wx:for="{{checkList}}" wx:key="value">
- <view class="weui-cells">
- <view class="time-select" style="padding-top: 10px;">
- <view>
- <text style="color:#426666;font-size:1.0rem;" >{{item.checkTitle}}</text>
- </view>
- <view>
- <text style="color:gray"> {{item.warningDesc}}</text>
- </view>
- <view>
- <text class="{{item.closeStatus=='0' ? 'processStatusNameNormal':'processStatusNameComplete'}}" >{{item.processStatusName}}</text>
- <text style="margin-left: 10px;color:gray;font-size:0.7rem;">{{item.updateUser}}</text>
- <text style="margin-left: 10px;color:gray;font-size:0.7rem;">{{item.updateTimeText}}</text>
- </view>
- </view>
- <view class="button">
- <view class="button-check">
- <button class="check-btn" data-checkid="{{item.id}}" bindtap="checkProcessHandle">
- <text class="text" style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;color:white">处理</text>
- </button>
- </view>
- <view class="button-check">
- <button class="check-btn" data-checkid="{{item.id}}" data-rtucode="{{item.rtuCode}}" bindtap="locationToHandle">
- <text class="text" style="font-size:0.6rem;display:flex;justify-content:center;align-items:center;height:22px;color:white">导航</text>
- </button>
- </view>
- </view>
- </view>
- </block>
- </scroll-view>
- </view>
- </view>
|