Browse Source

no message

linwenxin 4 tháng trước cách đây
mục cha
commit
51974aa338
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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
     }