新增积木报表菜单

This commit is contained in:
jiangqiang
2022-07-10 20:43:21 +08:00
parent 666c38239a
commit 5c58a377db
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<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>