其他分享
首页 > 其他分享> > 2021-07-28

2021-07-28

作者:互联网

el-table 表格保留小数

一、使用template 获取row,加上toFixed方法,方便保留小数以及拼接字符等

     <el-table-column align="center" label='推荐度' >
        <template slot-scope="scope">
          {{scope.row.recommend.toFixed(2) }}
        </template>
      </el-table-column>

标签:07,保留,28,拼接,2021,template,toFixed,row,小数
来源: https://blog.csdn.net/v_shenghuojia/article/details/119180326