vue中 <el-table-column>回显转成百分比【数字转为百分比】
一.方案1【不保留小数】
这里直接乘以100然后加入百分号既可
<el-table-column prop="refundRate15" label="15天退款率" width="64" > <template slot-scope="{ row }">{{ (row.refundRate15 * 100) }}%</template> </el-table-column>
结果图
一.方案2【保留2位小数】
逻辑同上,只是加了toFixed来保留两位小数
<el-table-column prop="afnOrderDefectRate" label="平台配送订单缺陷率" width="180" sortable> <template slot-scope="{ row }">{{ (row.afnOrderDefectRate * 100).toFixed(2) }}%</template> </el-table-column>
结果图
* 博客文章部分截图及内容来自于学习的书本及相应培训课程,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。
* 备注:王子威
* 我的网易邮箱:wzw_1314_520@163.com