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.
52 lines
2.4 KiB
52 lines
2.4 KiB
<!--pages/home/home.wxml-->
|
|
<view style="height:{{pageHeight}} ; overflow: auto;">
|
|
<!--顶部图片-->
|
|
<view class="top">
|
|
<image src="/images/email.svg" style="width: 100px;height: 100px;" />
|
|
</view>
|
|
<!--子系统列表-->
|
|
<view class="list card" style="display: flex; flex-wrap: wrap;">
|
|
<view style="min-width: 25%; margin: 10px 0px;text-align: center;" wx:for="{{itemList}}" wx:for-item="item" wx:key="*this" data-key="{{item.itemName}}" bindtap="jumpToSubSystem">
|
|
<image src="{{item.picPath}}" style="width: 29.97px;height: 28.93px;" />
|
|
<view>{{item.itemName}}</view>
|
|
</view>
|
|
</view>
|
|
<!--最近7天统计-->
|
|
<view class="card">
|
|
最近7天统计
|
|
<view style="background-image:url('/images/sevenDays.png');width: 100%; height: 99px; background-repeat: no-repeat;display: flex">
|
|
<view>
|
|
<image src="/images/check.png" style="width:36px;height:36px;margin:40px 10px 20px 10px" />
|
|
</view>
|
|
<view style="margin:40px 10px 20px 10px">
|
|
<view>巡检次数</view>
|
|
<view>次</view>
|
|
</view>
|
|
</view>
|
|
<view style="display: flex; justify-content: space-around;">
|
|
<view style="margin:10px 0px;">发现问题个数</view>
|
|
<view style="margin:10px 0px;">个</view>
|
|
<view style="margin:10px 0px;">问题处理个数</view>
|
|
<view style="margin:10px 0px;">个</view>
|
|
</view>
|
|
</view>
|
|
<!--总巡巡检统计-->
|
|
<view class="card">
|
|
总巡巡检统计
|
|
<view style="background-image:url('/images/xunjian.png');width: 100%; height: 99px; background-repeat: no-repeat;display: flex;">
|
|
<view>
|
|
<image src="/images/check.png" style="width:36px;height:36px;margin:40px 10px 20px 10px" />
|
|
</view>
|
|
<view style="margin:40px 10px 20px 10px">
|
|
<view>巡检次数</view>
|
|
<view>{{allCount}}次</view>
|
|
</view>
|
|
</view>
|
|
<view style="display: flex; justify-content: space-around;">
|
|
<view style="margin:10px 0px;">发现问题个数</view>
|
|
<view style="margin:10px 0px;">个</view>
|
|
<view style="margin:10px 0px;">问题处理个数</view>
|
|
<view style="margin:10px 0px;">{{todayRecord.length}}个</view>
|
|
</view>
|
|
</view>
|
|
</view>
|