You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
514 B

1 year ago
<template>
<ContentWrap>
<IFrame :src="url" style="width: 100%; height: calc(100vh - 180px)" />
<!-- <iframe :src="url" frameborder="0" style="width: 100%;height: 75vh;"></iframe> -->
</ContentWrap>
1 year ago
</template>
<script setup lang="ts">
1 year ago
// const url = ref('http://localhost:12080/jmreport/view/881686740529258496')
const route = useRoute() // 路由对象
const str = route.path.split('/')[3]
const url = ref(import.meta.env.VITE_JMREPORT_BASE_URL + '/jmreport/view/'+ str)
1 year ago
console.log(url);
1 year ago
</script>