meixioacomponent 0.1.86 → 0.1.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.1.86",
3
+ "version": "0.1.87",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -697,7 +697,7 @@ export default {
697
697
  // 判断表格的行能否点击
698
698
  selected(row, index) {
699
699
  let _tableCheckboxConfig = this.$props.tableCheckboxConfig;
700
- if (_tableCheckboxConfig.canSelected) return true;
700
+ if (!_tableCheckboxConfig.canSelected) return true;
701
701
 
702
702
  return _tableCheckboxConfig.canSelected(row, index);
703
703
  },