2024-07-30 15:07:56 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<doc-alert title="大屏设计器" url="https://doc.iocoder.cn/report/screen/" />
|
|
|
|
<i-frame :src="url" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import iFrame from "@/components/iFrame/index";
|
2024-08-12 16:53:18 +08:00
|
|
|
import {getAccessToken,getTenantId} from "@/utils/auth";
|
2024-07-30 15:07:56 +08:00
|
|
|
export default {
|
|
|
|
name: "GoView",
|
|
|
|
components: { iFrame },
|
|
|
|
data() {
|
|
|
|
return {
|
2024-08-12 16:53:18 +08:00
|
|
|
url: process.env.VUE_APP_BIG_SCREEN_SERVER+'/?tenantId='+getTenantId()+"&token="+getAccessToken(),
|
2024-07-30 15:07:56 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|