This commit is contained in:
shijingjing
2022-07-25 18:02:40 +08:00
parent 689c10e5c4
commit faea4c65bd
4 changed files with 39 additions and 48 deletions

View File

@@ -34,23 +34,19 @@
<div id="pieEcharts"></div>
<div class="pie_right">
<div>
<span v-show="tabIndex==0">计划送达居民:</span>
<span v-show="tabIndex==1">计划送达居民群:</span>
<span>{{tabIndex==0? '计划送达居民':'计划送达居民群:'}}</span>
<span>{{ info.planCount || 0 }}</span>
</div>
<div>
<span v-show="tabIndex==0">未送达居民:</span>
<span v-show="tabIndex==1">未送达居民群:</span>
<span>{{tabIndex==0? '未送达居民':'未送达居民群:'}}</span>
<span>{{ info.unExecutedCount || 0 }}</span>
</div>
<div>
<span v-show="tabIndex==0">已送达居民:</span>
<span v-show="tabIndex==1">已送达居民群:</span>
<span>{{tabIndex==0? '已送达居民':'已送达居民群:'}}</span>
<span>{{ info.executedCount || 0 }}</span>
</div>
<div>
<span v-show="tabIndex==0">无法送达居民:</span>
<span v-show="tabIndex==1">无法送达居民群:</span>
<span>{{tabIndex==0? '无法送达居民':'无法送达居民群:'}}</span>
<span>{{ info.cannotExecuteCount || 0 }}</span>
</div>
</div>
@@ -242,7 +238,7 @@ export default {
},
},
},
{ value: this.info.unExecutedCount },
{ value: this.info.unExecutedCount, name: "未送达数量" },
],
},
],