表格里面显示百分数

2019-08-28 11:12:37 浏览数 (1)

实现效果.png

  • 百分比数据为前端自己计算的
代码语言:javascript复制
     <template slot-scope="scope">

                  <font>
                          {{ 0 == scope.row.allCount ? 0 : (scope.row.authCount *100
                            /scope.row.allCount).toFixed(0) }}%
                  </font>

     </template>
  • 当分母为0时候,那么结果就是0. .toFixed(0) 是保留小数的意思。

0 人点赞