mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-14 19:15:06 +08:00
14 lines
369 B
Vue
14 lines
369 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts" name="Jmreport">
|
|
import { ref } from 'vue'
|
|
import { IFrame } from '@/components/IFrame'
|
|
import { getAccessToken } from '@/utils/auth'
|
|
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
|
</script>
|