(vue)多级表头且转为百分比显示

(vue)多级表头且转为百分比显示



c 复制代码
<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>
相关推荐
ruanCat1 小时前
Prettier 明明执行成功,Markdown 为什么还是没变?一次插件误诊复盘
前端·javascript·node.js
软件开发技术深度爱好者2 小时前
在线学习实践 TypeScript 的官方Playground(演练场)使用介绍
javascript·学习·typescript