element-ui里el-progress:进度条问题的解决Invalid prop: custom validator check failed for prop “percentage

 

原因:Progress 数值大于100报错处理 

 <el-progress type="circle" color="#509234" :show-text="false"
                  :percentage="TargetReportObj.sksRatio>100?100:parseFloat(TargetReportObj.sksRatio)" :stroke-width="7"
                  stroke-linecap="square" :width="150" />

 重点这句,绑定值不能大于100 (100 ? 100 : parseInt(value)")

:percentage="TargetReportObj.sksRatio>100?100:parseFloat(TargetReportObj.sksRatio)" 

猜你喜欢

转载自blog.csdn.net/weixin_43923808/article/details/132901287