2023-02-11 00:44:00 +08:00
|
|
|
<template>
|
2024-08-27 11:23:05 +08:00
|
|
|
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
|
2024-05-04 21:51:06 +08:00
|
|
|
|
2024-08-27 11:23:05 +08:00
|
|
|
<ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0">
|
|
|
|
<IFrame :src="src" />
|
2023-02-11 00:44:00 +08:00
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
2023-06-21 19:35:11 +08:00
|
|
|
<script lang="ts" setup>
|
2025-05-03 11:51:08 +08:00
|
|
|
import { getAccessToken, getRefreshToken } from '@/utils/auth'
|
2025-05-03 11:47:31 +08:00
|
|
|
|
2023-06-21 19:14:34 +08:00
|
|
|
defineOptions({ name: 'GoView' })
|
|
|
|
|
2025-05-03 11:47:31 +08:00
|
|
|
const src = ref(
|
2025-05-03 11:51:08 +08:00
|
|
|
`${import.meta.env.VITE_GOVIEW_URL}?accessToken=${getAccessToken()}&refreshToken=${getRefreshToken()}`
|
2025-05-03 11:47:31 +08:00
|
|
|
)
|
2023-02-11 00:44:00 +08:00
|
|
|
</script>
|