|
@@ -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) => {
|