|
<view class="chart-panel">
|
<ec-canvas id="mychart-dom-pie" canvas-id="mychart-pie" ec="{{ ec }}"></ec-canvas>
|
</view>
|
<view class="problems-tag">
|
{{summaryText}}
|
</view>
|
<!-- <view class="analysis-wrap">
|
<view class="analysis-title">
|
<view class="flex-h">
|
<t-icon name="chart-bubble" size="36rpx" color="var(--td-brand-color)" />
|
<text>问题总计</text>
|
</view>
|
<view> {{total}}个 </view>
|
</view>
|
</view> -->
|
<view class="problems-count" wx:for="{{chartData}}">
|
<text>{{index + 1 + '.' + item.name}}</text>
|
<text>{{item.value}}</text>
|
</view>
|