19 lines
374 B
Vue
19 lines
374 B
Vue
<template>
|
|
<div>
|
|
<doc-alert title="接口文档" url="https://doc.iocoder.cn/api-doc/" />
|
|
<i-frame :src="url" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import iFrame from "@/components/iFrame/index";
|
|
export default {
|
|
name: "JimuReport",
|
|
components: { iFrame },
|
|
data() {
|
|
return {
|
|
url: process.env.VUE_APP_BASE_API + "/jmreport/list"
|
|
};
|
|
},
|
|
};
|
|
</script>
|