feat: add report views
parent
ffff33a696
commit
c74bb8adce
|
@ -1,3 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<div>开发中</div>
|
<div>
|
||||||
|
<IFrame :src="src" />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<script setup lang="ts" name="ReportGoview">
|
||||||
|
import { ref } from 'vue'
|
||||||
|
import { IFrame } from '@/components/IFrame'
|
||||||
|
|
||||||
|
const src = ref('http://127.0.0.1:3000')
|
||||||
|
</script>
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div>开发中</div>
|
<div>
|
||||||
|
<IFrame :src="src" />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<script setup lang="ts" name="ReportJmreport">
|
||||||
|
import { ref } from 'vue'
|
||||||
|
import { IFrame } from '@/components/IFrame'
|
||||||
|
import { getAccessToken } from '@/utils/auth'
|
||||||
|
|
||||||
|
const src = ref(import.meta.env.VITE_GLOB_BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue