From fa3d2503f8c34049159058a19e941192e47fb89e Mon Sep 17 00:00:00 2001 From: dongyukun <1208714201@qq.com> Date: 星期四, 02 一月 2025 14:19:28 +0800 Subject: [PATCH] 调度模型下发数据类型字典 --- src/views/report/jmreport/index.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/report/jmreport/index.vue b/src/views/report/jmreport/index.vue index 0bac351..55338e7 100644 --- a/src/views/report/jmreport/index.vue +++ b/src/views/report/jmreport/index.vue @@ -4,10 +4,10 @@ </ContentWrap> </template> <script lang="ts" setup> -import { getAccessToken } from '@/utils/auth' +import {getAccessToken, getTenantId} from '@/utils/auth' defineOptions({ name: 'JimuReport' }) const BASE_URL = import.meta.env.VITE_BASE_URL -const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken()) +const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken() + "&tenantId=" + getTenantId()) </script> -- Gitblit v1.9.3