From c9cf9b8e8f185552ecc8b6a9170c73dc7a0dea45 Mon Sep 17 00:00:00 2001 From: q4speed Date: Mon, 7 Sep 2020 16:11:06 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E8=AF=B7=E6=B1=82=E6=94=AF=E6=8C=81=E8=B7=A8=E5=9C=BA=E6=99=AF?= =?UTF-8?q?=E6=8B=96=E6=8B=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/test/components/ApiScenarioConfig.vue | 2 +- .../components/request/ApiRequestConfig.vue | 320 +++++++++--------- .../api/test/model/ScenarioModel.js | 2 +- 3 files changed, 165 insertions(+), 159 deletions(-) diff --git a/frontend/src/business/components/api/test/components/ApiScenarioConfig.vue b/frontend/src/business/components/api/test/components/ApiScenarioConfig.vue index ba91dce801..34f42086ef 100644 --- a/frontend/src/business/components/api/test/components/ApiScenarioConfig.vue +++ b/frontend/src/business/components/api/test/components/ApiScenarioConfig.vue @@ -2,7 +2,7 @@
- + diff --git a/frontend/src/business/components/api/test/components/request/ApiRequestConfig.vue b/frontend/src/business/components/api/test/components/request/ApiRequestConfig.vue index a3c69ac094..6c4461b941 100644 --- a/frontend/src/business/components/api/test/components/request/ApiRequestConfig.vue +++ b/frontend/src/business/components/api/test/components/request/ApiRequestConfig.vue @@ -1,33 +1,36 @@ diff --git a/frontend/src/business/components/api/test/model/ScenarioModel.js b/frontend/src/business/components/api/test/model/ScenarioModel.js index 05acfdfac9..cbab697e3a 100644 --- a/frontend/src/business/components/api/test/model/ScenarioModel.js +++ b/frontend/src/business/components/api/test/model/ScenarioModel.js @@ -405,7 +405,7 @@ export class DubboRequest extends Request { this.debugReport = undefined; this.beanShellPreProcessor = new BeanShellProcessor(options.beanShellPreProcessor); this.beanShellPostProcessor = new BeanShellProcessor(options.beanShellPostProcessor); - this.enable = options.enable == undefined ? true : options.enable; + this.enable = options.enable === undefined ? true : options.enable; this.jsr223PreProcessor = new JSR223Processor(options.jsr223PreProcessor); this.jsr223PostProcessor = new JSR223Processor(options.jsr223PostProcessor);