当前位置:首页 > 前端 > 正文内容

Ant Design table自定义复选框的默认不可选状态

Z先生4年前 (2021-02-23)前端801

官网上的getCheckboxProps中的disabled的值是record.name==="XXX",我在用的过程中肯定是一个list,然后我就想用函数返回true或false,虽然功能不影响,但是打印台一直报错,提示disabled支持布尔,不支持函数。后来才找到办法解决,下面直接上代码

table定义

<a-table
    :loading="loading"
    rowKey="userId"
    :rowSelection="{
        selectedRowKeys: selectedRowKeys,
        onChange: onSelectChange,
        onSelect: selectEvent,
        onSelectAll: onSelectAll,
        getCheckboxProps: getCheckboxProps
     }"
     :columns="column"
     :dataSource="tableList"
     :pagination="false"
/>


关键在于:getCheckboxProps

getCheckboxProps(record) {
      return ({
        props: {
              disabled: record.isaudit==1
            }
      })
    },





标签: vueantd
分享给朋友:

相关文章

vue踩坑记20201027

elemeui/antd等框架,再使用复选框、下拉选择框时,如果通过v-model绑定了值,那么选择时,界面不会改变。方法一:使用default-value指定默认值,@change去改变本该v-mo...

vue深度监听

还是不废话,直接上干货 watch: { data: { handler: function(newVal, oldVal) { cons...

【原创】Promise循环执行,以及延时循环

演示代码//核心代码 function promiseMain(page) { return new Promise(function(resolve,&...

问题: - did you register the component correctly......

问题: - did you register the component correctly......

问题:无法使用tree组件提示 Unknown custom element:<a-tree> - did you register the component correctly? Fo...

npm锁定依赖包版本

在某些特殊时候,npm需要锁定依赖包的版本,其方法有2种 安装时后面代参数-E修改package.json文件,去掉版本号前面的^ 常用命令: npm install --save-dev...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。