getCheckboxProps的使用

表格多选默认有些不能勾选

      getCheckboxProps: (record: DataType) => ({
        disabled: record.name === 'ikun', // Column configuration not to be checked
        name: record.name,
      }),

表格多选默认都不能进行勾选
来一个条件,给路由上携带一个变量,只要跳转那个页面通过
this.$route.query拿到那个变量,我们就通过这个条件进行不可选

    getCheckboxProps(record) {
      return { props: { disabled: this.$route.query.type == 'hidden' } }
    },

你可能感兴趣的:(前端)