Handy_Cao 2 년 전
부모
커밋
1cefedf215
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/services/http/index.ts

+ 1 - 1
src/services/http/index.ts

@@ -156,7 +156,7 @@ export default new (class {
      * @returns 
      */
     async goRequest<T>(config: AxiosRequestConfig, errMsg?: string) {
-        const baseUrl = 'http://192.168.30.172:8888/api'//service.getConfig('goAccess')
+        const baseUrl = service.getConfig('goAccess')
         config.url = baseUrl + config.url
         const res = await this.request<CommonResult<T>>(config, errMsg)
         switch (res.code) {