diff --git a/api-test/frontend/src/business/automation/scenario/common/CustomizeReqInfo.vue b/api-test/frontend/src/business/automation/scenario/common/CustomizeReqInfo.vue index ba5ca7245a..c063046be8 100644 --- a/api-test/frontend/src/business/automation/scenario/common/CustomizeReqInfo.vue +++ b/api-test/frontend/src/business/automation/scenario/common/CustomizeReqInfo.vue @@ -170,7 +170,7 @@ export default { if (reg.test(urlStr)) { let url = this.getURL(urlStr); if (url && url.pathname) { - this.request.path = url.pathname; + this.request.path = decodeURIComponent(url.pathname); } } else { this.request.path = this.request.url;