```
// 子 与 父联动
// let temp1 = scopeParent.children.every(item => {
// return item.status == 1;
// });
// let temp2 = scopeParent.children.every(item => {
// return item.status == 0;
// });
// if(temp1){
// scopeParent.status = 1
// }
// if(temp2){
// scopeParent.status = 0
// }
```
网友评论