Ver Fonte

chang: indent http请求加入fullname id请求头.

peter há 3 meses atrás
pai
commit
94636b40c5
2 ficheiros alterados com 18 adições e 3 exclusões
  1. 11 3
      src/pages/indent-manage/index.vue
  2. 7 0
      src/utils/axios2.js

+ 11 - 3
src/pages/indent-manage/index.vue

@@ -11,13 +11,21 @@ defineComponent({
 provide('mediaRegExp', /^(https?:)?\/\/.+(.com.au\/|.com\/)/)
 const $route = useRoute()
 const token = Cookie.get('indent-token')
+const originQuery = $route.query as {
+  [key: string]: string
+}
+
+if (originQuery.id) {
+  Cookie.set('indent-crm-id', originQuery.id || '')
+}
+if (originQuery.full_name) {
+  Cookie.set('indent-crm-fullname', originQuery.full_name || '')
+}
 
 // 访问非登录页, 未登录状态调整登录页
 if (!token && $route.path !== '/indent-manage/login') {
   const $router = useRouter()
-  const originQuery = $route.query as {
-    [key: string]: string
-  }
+
   const params: any = {
     origin: encodeURIComponent($route.path),
   }

+ 7 - 0
src/utils/axios2.js

@@ -11,7 +11,14 @@ import { ElNotification } from 'element-plus'
 request.interceptors.request.use(
   (config) => {
     const token = Cookie.get('indent-token')
+    console.log(token, 'token')
     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 || ''
+    const crmFullName = Cookie.get('indent-crm-fullname')
+    console.log(crmFullName, 'indent crm fullname')
+    if (crmFullName) config.headers.crm_full_name = crmFullName || ''
     return config
   },
   (error) => {