index.vue 460 B

12345678910111213141516
  1. <template>
  2. <ContentWrap>
  3. <doc-alert title="报表设计器" url="https://doc.iocoder.cn/report/" />
  4. <ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
  5. <IFrame :src="src" />
  6. </ContentWrap>
  7. </ContentWrap>
  8. </template>
  9. <script lang="ts" setup>
  10. import { getAccessToken } from '@/utils/auth'
  11. defineOptions({ name: 'JimuReport' })
  12. const src = ref(import.meta.env.VITE_BASE_URL + '/jmreport/list?token=' + getAccessToken())
  13. </script>