fix(接口测试): mock期望设置中,请求体中的json-schema值输入框不提示mockJs的数据

mock期望设置中,请求体中的json-schema值输入框不提示mockJs的数据

Closes #23171
This commit is contained in:
song-tianyang 2023-03-27 19:25:21 +08:00 committed by 建国
parent 2170e068d7
commit 23d2864fc1
1 changed files with 7 additions and 5 deletions

View File

@ -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);