mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-23 15:25:07 +08:00
初始化项目,自 v1.7.1 版本开始
This commit is contained in:
8
src/views/report/goview/index.vue
Normal file
8
src/views/report/goview/index.vue
Normal file
@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<ContentWrap>
|
||||
<IFrame :src="src" />
|
||||
</ContentWrap>
|
||||
</template>
|
||||
<script setup lang="ts" name="GoView">
|
||||
const src = 'http://127.0.0.1:3000'
|
||||
</script>
|
11
src/views/report/jmreport/index.vue
Normal file
11
src/views/report/jmreport/index.vue
Normal file
@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<ContentWrap>
|
||||
<IFrame :src="src" />
|
||||
</ContentWrap>
|
||||
</template>
|
||||
<script setup lang="ts" name="Jmreport">
|
||||
import { getAccessToken } from '@/utils/auth'
|
||||
|
||||
const BASE_URL = import.meta.env.VITE_BASE_URL
|
||||
const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
|
||||
</script>
|
Reference in New Issue
Block a user