浏览代码

fix: crm id由http请求头传输改为url query传输.

peter 3 月之前
父节点
当前提交
0a1a0ab02b
共有 1 个文件被更改,包括 10 次插入1 次删除
  1. 10 1
      src/utils/axios2.js

+ 10 - 1
src/utils/axios2.js

@@ -16,9 +16,18 @@ request.interceptors.request.use(
     const crmID = Cookie.get('indent-crm-id')
     console.log(crmID, 'indent crm id')
     if (crmID) config.headers.crm_id = crmID || ''
+    if (config.url.includes('?')) {
+      config.url += `&crm_id=${crmID}`
+    } else {
+      config.url += `?crm_id=${crmID}`
+    }
     const crmFullName = Cookie.get('indent-crm-fullname')
     console.log(crmFullName, 'indent crm fullname')
-    if (crmFullName) config.headers.crm_full_name = crmFullName || ''
+    if (crmFullName) {
+      config.url += `&crm_full_name=${encodeURIComponent(crmFullName)}`
+    }
+
+    console.log(config)
     return config
   },
   (error) => {