27 lines
579 B
Vue
27 lines
579 B
Vue
<!--
|
|
* @Author: zhp
|
|
* @Date: 2023-10-17 09:26:38
|
|
* @LastEditTime: 2023-10-30 14:53:34
|
|
* @LastEditors: zhp
|
|
* @Description:
|
|
-->
|
|
<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>
|