fix(接口测试): mock期望设置中,请求体中的json-schema值输入框不提示mockJs的数据
mock期望设置中,请求体中的json-schema值输入框不提示mockJs的数据 Closes #23171
This commit is contained in:
parent
2170e068d7
commit
23d2864fc1
|
@ -58,9 +58,9 @@ export default {
|
|||
};
|
||||
},
|
||||
watch: {
|
||||
"schema.type": {
|
||||
'schema.type': {
|
||||
handler() {
|
||||
this.schema.mock = this.mock;
|
||||
this.schema.mock = this.mock;
|
||||
},
|
||||
deep: true,
|
||||
},
|
||||
|
@ -86,9 +86,11 @@ export default {
|
|||
methods: {
|
||||
funcSearch(queryString, cb) {
|
||||
let results = [];
|
||||
if (!this.showMockVars) {
|
||||
let funcs = MOCKJS_FUNC.concat(JMETER_FUNC);
|
||||
results = queryString ? funcs.filter(this.funcFilter(queryString)) : funcs;
|
||||
if (!this.disabled && this.needMock) {
|
||||
if (!this.showMockVars) {
|
||||
let funcs = MOCKJS_FUNC.concat(JMETER_FUNC);
|
||||
results = queryString ? funcs.filter(this.funcFilter(queryString)) : funcs;
|
||||
}
|
||||
}
|
||||
// 调用 callback 返回建议列表的数据
|
||||
cb(results);
|
||||
|
|
Loading…
Reference in New Issue