(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>
相关推荐
JarvanMo1 小时前
Dart 3.13:小版本,大动作
前端
纯粹的热爱1 小时前
Ubuntu 安装 Node.js 22.x(通过 NodeSource 官方源)
前端
Highcharts1 小时前
如何选择正确的图表:驱动理解和洞察力的三部分框架(第3部分)
前端·数据可视化
JavaGuide1 小时前
Github 史诗级故障,与此同时,Cursor 版「GitHub」正式上线!
前端·后端
郭邯1 小时前
用 AI 写了一个经纬度格式转换工具,从需求到落地的完整过程
前端
不一样的少年_1 小时前
修了 Bug、做了重构,为什么老板还是觉得你没产出?
前端·后端·程序员
马可家的菠萝1 小时前
Vue3 + Canvas 手绘笔记工程化实践:别把画布只当成一张 PNG
前端·vue.js·算法
IMPYLH1 小时前
HTML 的 <h1>–<h6> 元素
前端·javascript·html
IMPYLH1 小时前
HTML 的 <head> 元素
前端·html