|
@@ -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')
|