14 lines
321 B
Vue
Raw Normal View History

<template>
<ContentWrap>
<IFrame :src="src" />
</ContentWrap>
</template>
2023-06-21 19:14:34 +08:00
<script setup lang="ts">
import { getAccessToken } from '@/utils/auth'
2023-06-21 19:14:34 +08:00
defineOptions({ name: 'JimuReport' })
const BASE_URL = import.meta.env.VITE_BASE_URL
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
</script>