From b5d7140aa83ca02d44e31999ca90b8759fdc999b Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Fri, 26 Feb 2021 14:38:54 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8E=BB=E6=8E=89=E5=86=97?= =?UTF-8?q?=E4=BD=99=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/automation/scenario/DebugRun.vue | 13 +++--------- .../automation/scenario/EditApiScenario.vue | 21 +++---------------- .../api/definition/components/Run.vue | 2 +- frontend/src/common/js/utils.js | 8 +++++++ 4 files changed, 15 insertions(+), 29 deletions(-) diff --git a/frontend/src/business/components/api/automation/scenario/DebugRun.vue b/frontend/src/business/components/api/automation/scenario/DebugRun.vue index ec0d33c99e..c9519440db 100644 --- a/frontend/src/business/components/api/automation/scenario/DebugRun.vue +++ b/frontend/src/business/components/api/automation/scenario/DebugRun.vue @@ -2,7 +2,7 @@
diff --git a/frontend/src/business/components/api/automation/scenario/EditApiScenario.vue b/frontend/src/business/components/api/automation/scenario/EditApiScenario.vue index 78ae9e667b..c6dfaeb66e 100644 --- a/frontend/src/business/components/api/automation/scenario/EditApiScenario.vue +++ b/frontend/src/business/components/api/automation/scenario/EditApiScenario.vue @@ -221,7 +221,7 @@ import { import {parseEnvironment} from "../../definition/model/EnvironmentModel"; import {ELEMENT_TYPE, ELEMENTS} from "./Setting"; import MsApiCustomize from "./ApiCustomize"; -import {getCurrentProjectID, getUUID} from "@/common/js/utils"; +import {getCurrentProjectID, getUUID, objToStrMap, strMapToObj} from "@/common/js/utils"; import ApiEnvironmentConfig from "../../definition/components/environment/ApiEnvironmentConfig"; import MsInputTag from "./MsInputTag"; import MsRun from "./DebugRun"; @@ -901,14 +901,6 @@ export default { } }) }, - objToStrMap(obj) { - let strMap = new Map(); - for (let k of Object.keys(obj)) { - strMap.set(k, obj[k]); - } - return strMap; - }, - getApiScenario() { if (this.currentScenario.tags != undefined && !(this.currentScenario.tags instanceof Array)) { this.currentScenario.tags = JSON.parse(this.currentScenario.tags); @@ -928,7 +920,7 @@ export default { if (obj) { this.currentEnvironmentId = obj.environmentId; if (obj.environmentMap) { - this.projectEnvMap = this.objToStrMap(obj.environmentMap); + this.projectEnvMap = objToStrMap(obj.environmentMap); } else { // 兼容历史数据 this.projectEnvMap.set(getCurrentProjectID(), obj.environmentId); @@ -964,13 +956,6 @@ export default { }) } }, - strMapToObj(strMap){ - let obj= Object.create(null); - for (let[k,v] of strMap) { - obj[k] = v; - } - return obj; - }, setParameter() { this.currentScenario.stepTotal = this.scenarioDefinition.length; this.currentScenario.projectId = getCurrentProjectID(); @@ -984,7 +969,7 @@ export default { variables: this.currentScenario.variables, headers: this.currentScenario.headers, referenced: 'Created', - environmentMap: this.strMapToObj(this.projectEnvMap), + environmentMap: strMapToObj(this.projectEnvMap), hashTree: this.scenarioDefinition, projectId: this.projectId, }; diff --git a/frontend/src/business/components/api/definition/components/Run.vue b/frontend/src/business/components/api/definition/components/Run.vue index d8d6d9ae85..18331f0e80 100644 --- a/frontend/src/business/components/api/definition/components/Run.vue +++ b/frontend/src/business/components/api/definition/components/Run.vue @@ -86,7 +86,7 @@ import {getUUID, getBodyUploadFiles, getCurrentProjectID, strMapToObj} from "@/c this.$fileUpload(url, null, bodyFiles, reqObj, response => { this.runId = response.data; this.getResult(); - }, erro => { + }, error => { this.$emit('runRefresh', {}); }); } diff --git a/frontend/src/common/js/utils.js b/frontend/src/common/js/utils.js index 4faaccda89..cee140a1bd 100644 --- a/frontend/src/common/js/utils.js +++ b/frontend/src/common/js/utils.js @@ -336,3 +336,11 @@ export function strMapToObj(strMap){ } return obj; } + +export function objToStrMap(obj) { + let strMap = new Map(); + for (let k of Object.keys(obj)) { + strMap.set(k, obj[k]); + } + return strMap; +}