You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
<!--package/polling/polling.wxml-->
|
|
<view class="page">
|
|
<!-- 顶部tab切换 -->
|
|
<view class='swiper-tab'>
|
|
<view class="swiper-tab-item active" data-current="0" bindtap="clickTab">巡检记录</view>
|
|
<!-- <view class="swiper-tab-item active" data-current="1" bindtap="clickTab">问题上报</view> -->
|
|
</view>
|
|
<view class='swiper-tab' style="top:100rpx;">
|
|
<view class="swiper-tab-item">待巡检</view>
|
|
</view>
|
|
|
|
<view class="contentBox">
|
|
<block wx:for="{{dataList}}" wx:key='*this'>
|
|
<view class="listBox">
|
|
<view style="padding-bottom:40rpx;overflow: hidden;">
|
|
<view class="titleBox" style="width: 630rpx; margin: 0 auto;">
|
|
<view class="title">{{item.name}}</view>
|
|
</view>
|
|
<view style="line-height:50rpx;font-size:28rpx;width: 630rpx; margin: 0 auto;">
|
|
计划时间:<text>{{item.startTime}}至{{item.endTime}}</text>
|
|
</view>
|
|
<view style="line-height:50rpx;font-size:28rpx;width: 630rpx; margin: 0 auto;">
|
|
计划时间:<text>{{item.way}}({{item.frequency}})</text>
|
|
</view>
|
|
<view class="btn" data-item="{{item}}" bindtap="bindStart">开始巡检</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|
|
<!-- 暂无数据 -->
|
|
<view hidden="{{hidden}}">
|
|
<image class="noData" src="../../images/noData.png"></image>
|
|
<view class="noTxt">暂无数据~</view>
|
|
</view>
|
|
</view>
|