perf(接口测试): 兼容已经存在的JSONSCHEMA大数据性能问题
This commit is contained in:
parent
5e4da87359
commit
0e4216b010
|
@ -207,7 +207,13 @@ export default {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
if (this.pickValue) {
|
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: {
|
methods: {
|
||||||
|
|
Loading…
Reference in New Issue