Browse Source

no message

linwenxin 4 months ago
parent
commit
51974aa338
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/common/http/index.js

+ 5 - 1
src/common/http/index.js

@@ -46,7 +46,11 @@ export const $http = (url, method, data, json, loadingBool = false, isExecute =
     if (loadingBool) {
       uni.hideLoading()
     }
-    const res = response.data || {}
+    const res = replaceStringInObject(
+      response.data || {},
+      ['https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/', 'https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/'],
+      process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/img/get?key='
+    )
     if (!isExecute) {
       return res
     }