美文网首页
vue处理小数保留两位并百分比展示

vue处理小数保留两位并百分比展示

作者: 上海_前端_求内推 | 来源:发表于2022-02-11 15:46 被阅读0次

    1,html

     <el-table-column prop="drugRate" label="药占比" width="auto">
                      <template slot-scope="scope">
                     {{ towNumber(scope.row.drugRate*100) }}%
                      </template>
                  </el-table-column>
    

    2,js

            towNumber(val) {      
     return Number(val).toFixed(2); 
    },
    

    相关文章

      网友评论

          本文标题:vue处理小数保留两位并百分比展示

          本文链接:https://www.haomeiwen.com/subject/tdzakrtx.html