perf(接口测试): 兼容已经存在的JSONSCHEMA大数据性能问题
This commit is contained in:
parent
79fb88c6f7
commit
c0b8dc0c13
|
@ -207,7 +207,13 @@ export default {
|
|||
},
|
||||
created() {
|
||||
if (this.pickValue) {
|
||||
this.hidden = this.root ? false : this.pickValue.hidden;
|
||||
if (this.pickValue.hidden === undefined) {
|
||||
this.hidden = this.root ? false : true;
|
||||
} else {
|
||||
this.hidden = this.root ? false : this.pickValue.hidden;
|
||||
}
|
||||
} else {
|
||||
this.hidden = true;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Reference in New Issue