2023-02-11 00:44:00 +08:00
|
|
|
<template>
|
|
|
|
<ContentWrap>
|
2024-05-04 21:51:06 +08:00
|
|
|
<doc-alert title="报表设计器" url="https://doc.iocoder.cn/report/" />
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
<IFrame :src="src" />
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
2023-06-21 19:35:11 +08:00
|
|
|
<script lang="ts" setup>
|
2023-02-11 00:44:00 +08:00
|
|
|
import { getAccessToken } from '@/utils/auth'
|
|
|
|
|
2023-06-21 19:14:34 +08:00
|
|
|
defineOptions({ name: 'JimuReport' })
|
|
|
|
|
2023-02-11 00:44:00 +08:00
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
|
|
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
|
|
|
</script>
|