fix: 全选表格含有disabled状态并且是勾选状态bug
This commit is contained in:
parent
d45c4cd966
commit
162dec5d37
|
@ -170270,7 +170270,7 @@
|
|||
var count = 0;
|
||||
var disabledCount = 0;
|
||||
data.forEach(function (da) {
|
||||
if (da._checked) {
|
||||
if (da._checked && !da._disabled) {
|
||||
count++;
|
||||
}
|
||||
if (da._disabled) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -67,7 +67,7 @@ export default function multiSelect(Table, Checkbox) {
|
|||
let count = 0;
|
||||
let disabledCount = 0;
|
||||
data.forEach(da=>{
|
||||
if(da._checked){
|
||||
if(da._checked && !da._disabled){
|
||||
count ++;
|
||||
}
|
||||
if(da._disabled){
|
||||
|
|
Loading…
Reference in New Issue