mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-11 01:42:42 +08:00
12 lines
298 B
Vue
12 lines
298 B
Vue
![]() |
<template>
|
||
|
<ContentWrap>
|
||
|
<IFrame :src="src" />
|
||
|
</ContentWrap>
|
||
|
</template>
|
||
|
<script setup lang="ts" name="Jmreport">
|
||
|
import { getAccessToken } from '@/utils/auth'
|
||
|
|
||
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
||
|
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
||
|
</script>
|