From 6637b0fb8f7f4dae6c1a1605c655a5f09b7d191c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Thu, 24 Aug 2023 11:01:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=8D=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../server/http-request-scripts-config-box.js | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 web/public/js/components/server/http-request-scripts-config-box.js diff --git a/web/public/js/components/server/http-request-scripts-config-box.js b/web/public/js/components/server/http-request-scripts-config-box.js deleted file mode 100644 index 168c3dbe..00000000 --- a/web/public/js/components/server/http-request-scripts-config-box.js +++ /dev/null @@ -1,37 +0,0 @@ -Vue.component("http-request-scripts-config-box", { - props: ["vRequestScriptsConfig", "v-is-location"], - data: function () { - let config = this.vRequestScriptsConfig - if (config == null) { - config = {} - } - return { - config: config - } - }, - methods: { - changeInitGroup: function (group) { - this.config.initGroup = group - this.$forceUpdate() - }, - changeRequestGroup: function (group) { - this.config.requestGroup = group - this.$forceUpdate() - } - }, - template: `
- -
-

请求初始化

-

在请求刚初始化时调用,此时自定义Header等尚未生效。

-
- -
-

准备发送请求

-

在准备执行请求或者转发请求之前调用,此时自定义Header、源站等已准备好。

-
- -
-
-
` -}) \ No newline at end of file