Commit 44905e5c authored by 程卓's avatar 程卓

优化徐汇风险场景的圆图

parent 40ba0612
......@@ -324,7 +324,8 @@
</a-row>
<a-row class="align-stretch" style="padding:10px 0px;">
<a-col :span="7">
<a-progress type="circle" :percent="disposal.alreadyDone/disposal.thisYearTotal*100" size="small" :showInfo="false" :strokeWidth="15" strokeColor="#46B3FF" :width="60" />
<!-- 特殊处理百分比过大显示就像100% -->
<a-progress type="circle" :percent="(disposal.alreadyDone/disposal.thisYearTotal*100)>89 && (disposal.alreadyDone/disposal.thisYearTotal*100)<100 ? 80:(disposal.alreadyDone/disposal.thisYearTotal*100)" size="small" :showInfo="false" :strokeWidth="15" strokeColor="#46B3FF" :width="60" />
</a-col>
<a-col :span="16">
<div class="fengxianDisposalNum">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment