feat: 详情页联调

This commit is contained in:
2025-09-07 20:39:36 +08:00
parent 30a4ccae4d
commit 1a01ffa17b
5 changed files with 415 additions and 320 deletions

View File

@@ -211,12 +211,13 @@ class HttpService {
}
try {
console.log(this.buildHeaders(config), 1111);
const reqHeader = this.buildHeaders(config)
this.log('info', 'HTTP REQ HEADER: ', reqHeader)
const requestConfig = {
url: fullUrl,
method: method,
data: method !== 'GET' ? data : undefined,
header: this.buildHeaders(config),
header: reqHeader,
timeout: this.timeout
}