Commit 60d56553 by 姜雷

添加区域选择的值判断

parent 14e70069
......@@ -69,7 +69,7 @@ export default {
this.debouncedQueryChange = debounce(this.debounce, value => {
this.handleQueryChange(value);
});
if (this.value.find(item => item === -1)) {
if (this.value && this.value.find(item => item === -1)) {
this.selectedAll = true;
}
},
......
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