Files
iot-device-management-frontend/apps/web-antd/src/views/report/jmreport/index.vue

26 lines
567 B
Vue
Raw Normal View History

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