We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc92c2 commit 93056faCopy full SHA for 93056fa
src/views/report/jmreport/bi.vue
@@ -0,0 +1,15 @@
1
+<template>
2
+ <doc-alert title="大屏设计器" url="https://doc.iocoder.cn/screen/" />
3
+
4
+ <ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
5
+ <IFrame :src="src" />
6
+ </ContentWrap>
7
+</template>
8
+<script lang="ts" setup>
9
+import { getRefreshToken } from '@/utils/auth'
10
11
+defineOptions({ name: 'JimuBI' })
12
13
+// 使用 getRefreshToken() 方法,而不使用 getAccessToken() 方法的原因:积木报表无法方便的刷新访问令牌
14
+const src = ref(import.meta.env.VITE_BASE_URL + '/drag/list?token=' + getRefreshToken())
15
+</script>
0 commit comments