浏览代码

change: indent模块传递crm的用户id和名称给接口.

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

+ 6 - 5
src/utils/axios2.js

@@ -15,11 +15,12 @@ request.interceptors.request.use(
     if (token) config.headers.Authorization = `Bearer ${token}`
     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}`
+    if (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')