• Ant Design of Vue 表格动态改变复选框的disabled


    技术要点:

    computed 及 ant 自带的 getCheckboxProps 选择框的默认属性配置
    下面附代码:
    <template>
      <div>
        <a-table :columns="columns" :dataSource="data" :rowSelection="rowSelection">
          <a
            slot="operation"
            slot-scope="text,record,index"
            @click="changeState(index)"
          >切换状态</a>
        </a-table>
        <a-button @click="changeState(3)">切换状态</a-button>
      </div>
    </template>
    <script>
    export default {
      data () {
        return {
          columns: [
            {
              title: '姓名',
              dataIndex: '姓名'
            },
            {
              title: '操作',
              scopedSlots: { customRender: 'operation' }
            }
          ],
          data: [
            {
              key: '1',
              name: '张三',
              disabled: false
            },
            {
              key: '2',
              name: '李四',
              disabled: false
            },
            {
              key: '3',
              name: '王五',
              disabled: false
            },
            {
              key: '4',
              name: '大锤',
              disabled: true
            }
          ],
          selectedRowKeys: ['4']
        }
      },
      computed: {
        rowSelection () {
          return {
            getCheckboxProps: record => ({
              props: {
                disabled: record.disabled
              }
            })
          }
        }
      },
      methods: {
        changeState (index) {
          this.data[index].disabled = !this.data[index].disabled
          // 这一步重新赋值才能实现动态改变disabled
          this.data = [...this.data]
        }
      }
    }
    </script>
  • 相关阅读:
    java语言基础--标识符、关键字
    #考研碎碎念#3
    #考研笔记#计算机之word问题
    #考研#计算机文化知识1(局域网及网络互联)
    #学习笔记#jsp
    #学习笔记#JSP数据交互
    考研随笔2
    考研随笔1
    几个人
    全局变量
  • 原文地址:https://www.cnblogs.com/wss198909/p/16139888.html
Copyright © 2020-2023  润新知