(vue)多级表头且转为百分比显示
文章来源地址https://www.toymoban.com/news/detail-670735.html
<el-table-column align="center" label="近三个月数据情况">
<el-table-column align="center" prop="amount" :label="tableLast[0]">
<template slot-scope="{ row }">{{ (row.amount * 100).toFixed(0) }}%</template>
</el-table-column>
<el-table-column align="center" prop="amountTwo" :label="tableLast[1]">
<template slot-scope="{ row }">{{ (row.amountTwo * 100).toFixed(0) }}%</template>
</el-table-column>
<el-table-column align="center" prop="amountThree" :label="tableLast[2]">
<template slot-scope="{ row }">{{ (row.amountThree * 100).toFixed(0) }}%</template>
</el-table-column>
</el-table-column>
文章来源:https://www.toymoban.com/news/detail-670735.html
到了这里,关于(vue)多级表头且转为百分比显示的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!