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.
28 lines
715 B
28 lines
715 B
<template> |
|
|
|
|
|
<ContentWrap :bodyStyle="{ padding: '0px' }" class="!mb-0"> |
|
<IFrame v-if="!loading" v-loading="loading" :src="src" /> |
|
</ContentWrap> |
|
</template> |
|
<script lang="ts" setup> |
|
import * as ConfigApi from '@/api/infra/config' |
|
|
|
defineOptions({ name: 'InfraSwagger' }) |
|
|
|
const loading = ref(true) // 是否加载中 |
|
const src = ref(import.meta.env.VITE_BASE_URL + '/doc.html') // Knife4j UI |
|
// const src = ref(import.meta.env.VITE_BASE_URL + '/swagger-ui') // Swagger UI |
|
|
|
/** 初始化 */ |
|
onMounted(async () => { |
|
try { |
|
const data = await ConfigApi.getConfigKey('url.swagger') |
|
if (data && data.length > 0) { |
|
src.value = data |
|
} |
|
} finally { |
|
loading.value = false |
|
} |
|
}) |
|
</script>
|
|
|