Files
yudao-ui-admin-vben/apps/web-antd/src/views/report/jmreport/index.vue
2025-04-30 11:39:53 +08:00

29 lines
647 B
Vue

<script lang="ts" setup>
import { ref } from 'vue';
import { Page } from '@vben/common-ui';
import { useAccessStore } from '@vben/stores';
import { DocAlert } from '#/components/doc-alert';
import { IFrame } from '#/components/iframe';
defineOptions({ name: 'JimuReport' });
const accessStore = useAccessStore();
const src = ref(
`${import.meta.env.VITE_BASE_URL}/jmreport/list?token=${
accessStore.refreshToken
}`,
);
</script>
<template>
<Page auto-content-height>
<template #doc>
<DocAlert title="报表设计器" url="https://doc.iocoder.cn/report/" />
</template>
<IFrame :src="src" />
</Page>
</template>