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.
49 lines
1.8 KiB
49 lines
1.8 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/right_icon.png" />
|
|
<view class="title">今日问题分布</view>
|
|
</view>
|
|
<image src="/images/right_card_bg.png" class="card-bg" />
|
|
</view>
|
|
<view wx:for="{{[1,2,3,4]}}" class="problem-box flex">
|
|
<view class="problem-title text---">类型1:</view>
|
|
<progress
|
|
style="width: 70%;"
|
|
percent="{{80}}"
|
|
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/right_icon.png" />
|
|
<view class="title">今日待检分布</view>
|
|
</view>
|
|
<view class="card-right">总次数:{{50}}次</view>
|
|
<image src="/images/right_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">总次数:{{50}}次</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>
|
|
|