2022-11-22 22:03:02 +08:00
|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<IFrame :src="src" />
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
2022-11-23 22:26:25 +08:00
|
|
|
<script setup lang="ts" name="Jmreport">
|
2022-11-22 22:03:02 +08:00
|
|
|
import { ref } from 'vue'
|
2022-11-17 17:11:24 +08:00
|
|
|
import { IFrame } from '@/components/IFrame'
|
2022-08-08 09:57:45 +08:00
|
|
|
import { getAccessToken } from '@/utils/auth'
|
2022-11-22 22:03:02 +08:00
|
|
|
|
2022-08-08 09:57:45 +08:00
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
|
|
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
|
|
|
</script>
|