index.vue 298 B

1234567891011
  1. <template>
  2. <ContentWrap>
  3. <IFrame :src="src" />
  4. </ContentWrap>
  5. </template>
  6. <script setup lang="ts" name="Jmreport">
  7. import { getAccessToken } from '@/utils/auth'
  8. const BASE_URL = import.meta.env.VITE_BASE_URL
  9. const src = ref(BASE_URL + '/jmreport/list?token=' + getAccessToken())
  10. </script>