vue element表格如何动态设置按钮禁用状态?

发布于 2022-09-06 08:19:33 字数 1311 浏览 7 评论 0

我想当我的状态列 (prop="state")的值改变时,我的操作按钮(label="操作")可以动态改变禁用状态,比如,我的"state":"已提交"时,操作按钮是可用的 ,我的"state":"已完成"时,操作按钮是禁用状态的,怎么弄?求大神指点

     <el-table :data="tableData1" border style="width: 100%"  ref="multipleTable" @selection-change="handleSelectionChange">
        <el-table-column prop="ordergoods" label="活动订单商品" align="center"></el-table-column>
        <el-table-column prop="consignee" label="收货人信息" align="center"></el-table-column>
        <el-table-column prop="buyeraccount" label="下单人账号" width="150" align="center"></el-table-column>
        <el-table-column prop="distribution"  label="配送方式" :formatter="formatter" align="center"></el-table-column>
        <el-table-column prop="state" label="状态" width="120" align="center"></el-table-column>
        <el-table-column label="操作" width="180" align="center">
            <template scope="scope">
                <el-button type="primary" :disabled="isDisabled" size="small" @click="dialogFormVisible = true">操作</el-button>
            </template>
        </el-table-column>
    </el-table>

图片描述

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

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

发布评论

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

评论(4

世界如花海般美丽 2022-09-13 08:19:33

可以直接复制替换你那个操作模板试试,看能不能达到你那个目的。

<template slot-scope="scope">  //这里需要注意一下
    <el-button type="primary" :disabled="scope.row.state == '已完成'" size="small" @click="dialogFormVisible = true">操作</el-button>
</template>
单挑你×的.吻 2022-09-13 08:19:33

根据你的 state 来设置, 你的 state会有多种状态, 假设 已完成状态 state 的值为 1

<el-button type="primary" :disabled="scope.row.state === 1" size="small" @click="dialogFormVisible = true">操作</el-button>
旧情勿念 2022-09-13 08:19:33
 <el-table-column label="操作" width="180" align="center">
    <template slot-scope="scope">
        <el-button type="primary" :disabled="scope.row.state == '已完成'" size="small" @click="dialogFormVisible = true">操作</el-button>
    </template>
</el-table-column>

这样就能解决问题
之前不明白scope.row.state可以这样写

蔚蓝源自深海 2022-09-13 08:19:33

会出现所有按钮都被禁用吧

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