潘志宝
2024-09-18 6d9c089cebac440c78573e9fa95190ee9ead674c
提交 | 用户 | 时间
820397 1 <template>
H 2   <ContentWrap>
3     <IFrame :src="src" />
4   </ContentWrap>
5 </template>
6 <script lang="ts" setup>
7 import { getAccessToken } from '@/utils/auth'
8
9 defineOptions({ name: 'JimuReport' })
10
11 const BASE_URL = import.meta.env.VITE_BASE_URL
12 const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
13 </script>