feat:集成积木仪表盘
This commit is contained in:
28
apps/web-antd/src/views/report/jmreport/bi.vue
Normal file
28
apps/web-antd/src/views/report/jmreport/bi.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<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: 'JimuBI' });
|
||||
const accessStore = useAccessStore();
|
||||
|
||||
const src = ref(
|
||||
`${import.meta.env.VITE_BASE_URL}/drag/list?token=${
|
||||
accessStore.refreshToken
|
||||
}`,
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Page auto-content-height>
|
||||
<template #doc>
|
||||
<DocAlert title="大屏设计器" url="https://doc.iocoder.cn/screen/" />
|
||||
</template>
|
||||
|
||||
<IFrame :src="src" />
|
||||
</Page>
|
||||
</template>
|
||||
Reference in New Issue
Block a user