mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
增加数据报表 vue
This commit is contained in:
parent
39ac59efee
commit
b05366511b
19
yudao-ui-admin/src/views/visualization/jmreport/index.vue
Normal file
19
yudao-ui-admin/src/views/visualization/jmreport/index.vue
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<doc-alert title="报表设计器" url="https://doc.iocoder.cn/report/" />
|
||||||
|
<i-frame :src="url" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import iFrame from "@/components/iFrame/index";
|
||||||
|
import {getAccessToken} from "@/utils/auth";
|
||||||
|
export default {
|
||||||
|
name: "JimuReport",
|
||||||
|
components: { iFrame },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
url: process.env.VUE_APP_BASE_API + "/jmreport/list?token=" + getAccessToken(),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user