fix(接口测试): 修复调试接口打印环境为null问题
--bug=1035027 --user=王旭 【接口测试】github#28622,tcp 后置脚本打印环境id值是null, http接口可以打印出来 https://www.tapd.cn/55049933/s/1621265
This commit is contained in:
parent
5520044764
commit
63a1449c42
|
@ -80,7 +80,8 @@ import MsApiCaseList from '../case/EditApiCase';
|
|||
import { TYPE_TO_C } from '@/business/automation/scenario/Setting';
|
||||
import { mergeRequestDocumentData } from '@/business/definition/api-definition';
|
||||
import { execStop } from '@/api/scenario';
|
||||
|
||||
import {useApiStore} from "@/store";
|
||||
const store = useApiStore();
|
||||
export default {
|
||||
name: 'ApiConfig',
|
||||
components: {
|
||||
|
@ -155,6 +156,7 @@ export default {
|
|||
this.loading = true;
|
||||
this.isStop = true;
|
||||
this.request.name = getUUID().substring(0, 8);
|
||||
this.request.useEnvironment = store.useEnvironment;
|
||||
this.runData = [];
|
||||
this.runData.push(this.request);
|
||||
/*触发执行操作*/
|
||||
|
|
|
@ -106,7 +106,8 @@ import MsApiCaseList from '../case/EditApiCase';
|
|||
import { TYPE_TO_C } from '@/business/automation/scenario/Setting';
|
||||
import { mergeRequestDocumentData } from '@/business/definition/api-definition';
|
||||
import { execStop } from '@/api/scenario';
|
||||
|
||||
import {useApiStore} from "@/store";
|
||||
const store = useApiStore();
|
||||
export default {
|
||||
name: 'DebugHttpPage',
|
||||
components: {
|
||||
|
@ -190,6 +191,7 @@ export default {
|
|||
this.isStop = true;
|
||||
this.request.url = this.debugForm.url;
|
||||
this.request.method = this.debugForm.method;
|
||||
this.request.useEnvironment = store.useEnvironment;
|
||||
this.request.name = getUUID().substring(0, 8);
|
||||
this.runData = [];
|
||||
this.runData.push(this.request);
|
||||
|
|
|
@ -85,7 +85,8 @@ import MsApiCaseList from '../case/EditApiCase';
|
|||
import { TYPE_TO_C } from '@/business/automation/scenario/Setting';
|
||||
import { mergeRequestDocumentData } from '@/business/definition/api-definition';
|
||||
import { execStop } from '@/api/scenario';
|
||||
|
||||
import {useApiStore} from "@/store";
|
||||
const store = useApiStore();
|
||||
export default {
|
||||
name: 'ApiConfig',
|
||||
components: {
|
||||
|
@ -162,6 +163,7 @@ export default {
|
|||
this.isStop = true;
|
||||
this.request.name = getUUID().substring(0, 8);
|
||||
this.runData = [];
|
||||
this.request.useEnvironment = store.useEnvironment;
|
||||
this.runData.push(this.request);
|
||||
/*触发执行操作*/
|
||||
this.reportId = getUUID().substring(0, 8);
|
||||
|
|
Loading…
Reference in New Issue