14 lines
325 B
Vue
14 lines
325 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { getAccessToken } from '@/utils/auth'
|
|
|
|
defineOptions({ name: 'UReportData' })
|
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/ureport/designer?token=' + getAccessToken())
|
|
</script>
|