diff --git a/src/api/user.js b/src/api/user.js index 45c13b4d..223900f5 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -27,7 +27,7 @@ export function sendAnalyzeRequest(token) { return request({ url: '/testpredict', method: 'get', - baseURL: 'http://localhost:8888', + baseURL: 'http://localhost:8010', params: { token } }) } @@ -36,7 +36,7 @@ export function sendAnalyzeOnDateRequest(token, fromDate, toDate) { return request({ url: '/predictOnDate', method: 'get', - baseURL: 'http://localhost:8888', + baseURL: 'http://localhost:8010', params: { token, fromDate, toDate } }) }