fix(Mock自定义脚本): 修复创建/更新mock时必填项的检查失效问题
修复创建/更新mock时必填项的检查失效问题
This commit is contained in:
parent
794c663502
commit
21331112db
|
@ -105,6 +105,12 @@ export default {
|
||||||
if (!this.response || !this.response || !this.response.headers) {
|
if (!this.response || !this.response || !this.response.headers) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(!this.response.httpCode || this.response.httpCode === ''){
|
||||||
|
this.$set(this.response,"httpCode","200");
|
||||||
|
}
|
||||||
|
if(!this.response.delayed){
|
||||||
|
this.response.delayed = 0;
|
||||||
|
}
|
||||||
if (Object.prototype.toString.call(this.response).match(/\[object (\w+)\]/)[1].toLowerCase() !== 'object') {
|
if (Object.prototype.toString.call(this.response).match(/\[object (\w+)\]/)[1].toLowerCase() !== 'object') {
|
||||||
this.response = JSON.parse(this.response);
|
this.response = JSON.parse(this.response);
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,10 +100,10 @@ export default {
|
||||||
},
|
},
|
||||||
response: {
|
response: {
|
||||||
httpCode: "",
|
httpCode: "",
|
||||||
delayed: "",
|
|
||||||
httpHeads: [],
|
httpHeads: [],
|
||||||
body: "",
|
body: "",
|
||||||
responseResult:{
|
responseResult:{
|
||||||
|
delayed: 0,
|
||||||
headers:[],
|
headers:[],
|
||||||
arguments:[],
|
arguments:[],
|
||||||
rest:[],
|
rest:[],
|
||||||
|
@ -234,6 +234,18 @@ export default {
|
||||||
uploadMockExpectConfig(clearForm) {
|
uploadMockExpectConfig(clearForm) {
|
||||||
let url = "/mockConfig/updateMockExpectConfig";
|
let url = "/mockConfig/updateMockExpectConfig";
|
||||||
let param = this.mockExpectConfig;
|
let param = this.mockExpectConfig;
|
||||||
|
if(!param.name || param.name === ''){
|
||||||
|
this.$error(this.$t('test_track.case.input_name'));
|
||||||
|
return false;
|
||||||
|
}else if(param.name.length > 100){
|
||||||
|
this.$error(this.$t('test_track.length_less_than')+100);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!param.response.responseResult.httpCode){
|
||||||
|
param.response.responseResult.httpCode = 200;
|
||||||
|
}
|
||||||
|
|
||||||
if(!param.request.params.id){
|
if(!param.request.params.id){
|
||||||
param.request.params.id = getUUID();
|
param.request.params.id = getUUID();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue