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.
50 lines
1.9 KiB
50 lines
1.9 KiB
<!--package/subSystem/dayPatrolInfo/dayPatrolInfo.wxml-->
|
|
<view class="day-patrol-info">
|
|
<view class="card" style="margin-bottom: 10px">
|
|
<view class="card-top flex flex-between">
|
|
<view class="card-left flex">
|
|
<image class="card-icon" src="/images/question_icon.png" />
|
|
<view class="title">今日问题分布</view>
|
|
</view>
|
|
<image src="/images/question_card_bg.png" class="card-bg" />
|
|
</view>
|
|
<view wx:for="{{dayIssues}}" class="problem-box flex">
|
|
<view class="problem-title text---">{{item.pointName}}</view>
|
|
<progress
|
|
style="width: 70%;"
|
|
percent="{{item.percent}}"
|
|
activeColor="{{item.color}}"
|
|
stroke-width="8"
|
|
show-info
|
|
font-size="14"
|
|
border-radius="4"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="card" style="margin-bottom: 10px">
|
|
<view class="card-top flex flex-between">
|
|
<view class="card-left flex">
|
|
<image class="card-icon" src="/images/hourglass_icon.png" />
|
|
<view class="title">今日待检分布</view>
|
|
</view>
|
|
<view class="card-right">总次数:{{needInspectCount}}次</view>
|
|
<image src="/images/hourglass_card_bg.png" class="card-bg" />
|
|
</view>
|
|
<view class="pie-chart-box">
|
|
<ec-canvas id="need-chart-dom" canvas-id="need-chart" ec="{{ needEc }}"></ec-canvas>
|
|
</view>
|
|
</view>
|
|
<view class="card" style="margin-bottom: 10px">
|
|
<view class="card-top flex flex-between">
|
|
<view class="card-left flex">
|
|
<image class="card-icon" src="/images/right_icon.png" />
|
|
<view class="title">今日已检分布</view>
|
|
</view>
|
|
<view class="card-right">总次数:{{inspectedCount}}次</view>
|
|
<image src="/images/right_card_bg.png" class="card-bg" />
|
|
</view>
|
|
<view class="pie-chart-box">
|
|
<ec-canvas id="already-chart-dom" canvas-id="already-chart" ec="{{ alreadyEc }}"></ec-canvas>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|