|
@@ -177,9 +177,14 @@ export default {
|
|
|
},
|
|
|
//全选
|
|
|
handleCheckAllChange(val) {
|
|
|
+ var isCheck = this.filedList.filter(item=>{
|
|
|
+ return item.disabled
|
|
|
+ })
|
|
|
this.checked = val ? this.filedList.map(item => {
|
|
|
return item.value
|
|
|
- }) : [];
|
|
|
+ }) : isCheck.map(item => {
|
|
|
+ return item.value
|
|
|
+ }) ;
|
|
|
this.isIndeterminate = false;
|
|
|
},
|
|
|
//勾选
|