【新增】report:相关文档的链接

pull/42/head
YunaiV 2024-05-04 21:51:26 +08:00
parent 71156e8380
commit cd96435c25
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
<script lang="ts" setup>
import { ref } from 'vue'
import { IFrame } from '@/components/IFrame'
import { DocAlert } from '@/components/DocAlert'
defineOptions({ name: 'ReportGoview' })
@ -9,6 +10,8 @@ const src = ref('http://127.0.0.1:3000')
<template>
<div>
<DocAlert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
<IFrame :src="src" />
</div>
</template>

View File

@ -2,6 +2,7 @@
import { ref } from 'vue'
import { IFrame } from '@/components/IFrame'
import { getAccessToken } from '@/utils/auth'
import { DocAlert } from '@/components/DocAlert'
defineOptions({ name: 'ReportJmreport' })
@ -10,6 +11,8 @@ const src = ref(`${import.meta.env.VITE_GLOB_BASE_URL}/jmreport/list?token=${get
<template>
<div>
<DocAlert title="报表设计器" url="https://doc.iocoder.cn/report/" />
<IFrame :src="src" />
</div>
</template>