element ui table 表格 获取到数据之后让其中两个单元格相乘

发布于 2022-09-12 03:37:29 字数 1106 浏览 26 评论 0

<el-table-column label="数量" width="65" prop="size" align="center">
    <template slot-scope="scope">
        <el-input type="textarea" resize="none" autosize v-model="scope.row.size" @change="handleEdit(scope.$index, scope.row)"></el-input>
    </template>
</el-table-column>
<el-table-column label="采购单价(元)" width="124" prop="purchasePrice" align="center">
    <template slot-scope="scope">
        <el-input type="textarea" resize="none" autosize v-model="scope.row.purchasePrice" @change="handleEdit(scope.$index, scope.row)"></el-input>
    </template>
</el-table-column>
tableInfo:{
    tableData: [
        {
            size:'10',
            purchasePrice:'10',
        }
    ],
},
handleEdit(index, row) {
    if(row.size && row.purchasePrice){
        row.purchaseMoney = Number(row.size)*Number(row.purchasePrice)
    }
},

写在change事件里可以计算出来

如果是一进页面 从后台获取到数量和单价 如何执行计算呢?

未来数据会是35行 计算出来怎么知道是哪行的合呢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅听莫相离 2022-09-19 03:37:29
 this.tableInfo.tableData.forEach((v,i)=>{
        if(v.size && v.purchasePrice){
            v.purchaseMoney = Number(v.size)*Number(v.purchasePrice)
        }
    })

自己答了 每次进页面遍历一遍数据 相乘 放在一个格子里就好了。。。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文