文件扩展名相关变量使用${requestPathLowerExtension}

This commit is contained in:
GoEdgeLab
2023-02-10 10:44:29 +08:00
parent c570913f68
commit 99117eb114

View File

@@ -4,7 +4,7 @@ Vue.component("http-cond-url-extension", {
data: function () {
let cond = {
isRequest: true,
param: "${requestPathExtension}",
param: "${requestPathLowerExtension}",
operator: "in",
value: "[]"
}
@@ -95,7 +95,7 @@ Vue.component("http-cond-url-not-extension", {
data: function () {
let cond = {
isRequest: true,
param: "${requestPathExtension}",
param: "${requestPathLowerExtension}",
operator: "not in",
value: "[]"
}