|
@@ -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),
|
|
|
}
|