Skip to content

Commit 6e5b151

Browse files
committed
增加数据报表 vue
1 parent 2bec57a commit 6e5b151

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<template>
2+
<div>
3+
<doc-alert title="报表设计器" url="https://doc.iocoder.cn/report/" />
4+
<i-frame :src="url" />
5+
</div>
6+
</template>
7+
<script>
8+
import iFrame from "@/components/iFrame/index";
9+
import {getAccessToken} from "@/utils/auth";
10+
export default {
11+
name: "JimuReport",
12+
components: { iFrame },
13+
data() {
14+
return {
15+
url: process.env.VUE_APP_BASE_API + "/jmreport/list?token=" + getAccessToken(),
16+
};
17+
},
18+
};
19+
</script>

0 commit comments

Comments
 (0)