Commit 45224834 by 姜雷

Merge branch 'develop' into 'test'

添加区域选择的值判断 See merge request !170
parents 55cadd78 60d56553
......@@ -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