Commit 58346fe7 authored by wxk's avatar wxk

充提记录筛选显示bug

parent b1e9eaf2
...@@ -774,7 +774,8 @@ ...@@ -774,7 +774,8 @@
}, },
//充提记录筛选 //充提记录筛选
handleCheckAllChange2(val) { handleCheckAllChange2(val) {
this.checkedOptions1 = val ? this.options1 : []; this.checkedOptions1 = val ? ['0', '1'] : [];
console.log(this.checkedOptions1);
this.isIndeterminate2 = false; this.isIndeterminate2 = false;
this.getRecords(); this.getRecords();
}, },
...@@ -785,7 +786,7 @@ ...@@ -785,7 +786,7 @@
this.getRecords(); this.getRecords();
}, },
handleCheckAllChange3(val) { handleCheckAllChange3(val) {
this.checkedStates1 = val ? [0,1] : []; this.checkedStates1 = val ? ['0', '1'] : [];
this.isIndeterminate3 = false; this.isIndeterminate3 = false;
this.getRecords(); this.getRecords();
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment