mirror of
				https://gitee.com/hhyykk/ipms-sjy-ui.git
				synced 2025-11-04 04:08:44 +08:00 
			
		
		
		
	增加 swagger、druid、skywalking、admin 的自定义路径
This commit is contained in:
		
							
								
								
									
										4
									
								
								src/types/auto-components.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								src/types/auto-components.d.ts
									
									
									
									
										vendored
									
									
								
							@@ -56,10 +56,14 @@ declare module '@vue/runtime-core' {
 | 
			
		||||
    ElIcon: typeof import('element-plus/es')['ElIcon']
 | 
			
		||||
    ElImageViewer: typeof import('element-plus/es')['ElImageViewer']
 | 
			
		||||
    ElInput: typeof import('element-plus/es')['ElInput']
 | 
			
		||||
    ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
 | 
			
		||||
    ElLink: typeof import('element-plus/es')['ElLink']
 | 
			
		||||
    ElOption: typeof import('element-plus/es')['ElOption']
 | 
			
		||||
    ElPagination: typeof import('element-plus/es')['ElPagination']
 | 
			
		||||
    ElPopover: typeof import('element-plus/es')['ElPopover']
 | 
			
		||||
    ElRadio: typeof import('element-plus/es')['ElRadio']
 | 
			
		||||
    ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
 | 
			
		||||
    ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
 | 
			
		||||
    ElRow: typeof import('element-plus/es')['ElRow']
 | 
			
		||||
    ElScrollbar: typeof import('element-plus/es')['ElScrollbar']
 | 
			
		||||
    ElSelect: typeof import('element-plus/es')['ElSelect']
 | 
			
		||||
 
 | 
			
		||||
@@ -2,46 +2,38 @@
 | 
			
		||||
  <doc-alert title="数据库文档" url="https://doc.iocoder.cn/db-doc/" />
 | 
			
		||||
 | 
			
		||||
  <ContentWrap title="数据库文档">
 | 
			
		||||
    <!-- 操作工具栏 -->
 | 
			
		||||
    <div class="mb-10px">
 | 
			
		||||
      <XButton
 | 
			
		||||
        type="primary"
 | 
			
		||||
        preIcon="ep:download"
 | 
			
		||||
        :title="t('action.export') + ' HTML'"
 | 
			
		||||
        @click="handleExport('HTML')"
 | 
			
		||||
      />
 | 
			
		||||
      <XButton
 | 
			
		||||
        type="primary"
 | 
			
		||||
        preIcon="ep:download"
 | 
			
		||||
        :title="t('action.export') + ' Word'"
 | 
			
		||||
        @click="handleExport('Word')"
 | 
			
		||||
      />
 | 
			
		||||
      <XButton
 | 
			
		||||
        type="primary"
 | 
			
		||||
        preIcon="ep:download"
 | 
			
		||||
        :title="t('action.export') + ' Markdown'"
 | 
			
		||||
        @click="handleExport('Markdown')"
 | 
			
		||||
      />
 | 
			
		||||
      <el-button type="primary" plain @click="handleExport('HTML')">
 | 
			
		||||
        <Icon icon="ep:download" /> 导出 HTML
 | 
			
		||||
      </el-button>
 | 
			
		||||
      <el-button type="primary" plain @click="handleExport('Word')">
 | 
			
		||||
        <Icon icon="ep:download" /> 导出 Word
 | 
			
		||||
      </el-button>
 | 
			
		||||
      <el-button type="primary" plain @click="handleExport('Markdown')">
 | 
			
		||||
        <Icon icon="ep:download" /> 导出 Markdown
 | 
			
		||||
      </el-button>
 | 
			
		||||
    </div>
 | 
			
		||||
    <IFrame v-if="!loding" v-loading="loding" :src="src" />
 | 
			
		||||
    <IFrame v-if="!loading" v-loading="loading" :src="src" />
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="DbDoc">
 | 
			
		||||
import download from '@/utils/download'
 | 
			
		||||
 | 
			
		||||
import * as DbDocApi from '@/api/infra/dbDoc'
 | 
			
		||||
 | 
			
		||||
const { t } = useI18n() // 国际化
 | 
			
		||||
const src = ref('')
 | 
			
		||||
const loding = ref(true)
 | 
			
		||||
const loading = ref(true) // 是否加载中
 | 
			
		||||
const src = ref('') // HTML 的地址
 | 
			
		||||
 | 
			
		||||
/** 页面加载 */
 | 
			
		||||
const init = async () => {
 | 
			
		||||
  const res = await DbDocApi.exportHtml()
 | 
			
		||||
  let blob = new Blob([res], { type: 'text/html' })
 | 
			
		||||
  let blobUrl = window.URL.createObjectURL(blob)
 | 
			
		||||
  src.value = blobUrl
 | 
			
		||||
  loding.value = false
 | 
			
		||||
  try {
 | 
			
		||||
    const data = await DbDocApi.exportHtml()
 | 
			
		||||
    const blob = new Blob([data], { type: 'text/html' })
 | 
			
		||||
    src.value = window.URL.createObjectURL(blob)
 | 
			
		||||
  } finally {
 | 
			
		||||
    loading.value = false
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/** 处理导出  */
 | 
			
		||||
const handleExport = async (type: string) => {
 | 
			
		||||
  if (type === 'HTML') {
 | 
			
		||||
@@ -57,6 +49,8 @@ const handleExport = async (type: string) => {
 | 
			
		||||
    download.markdown(res, '数据库文档.md')
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/** 初始化 */
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  await init()
 | 
			
		||||
})
 | 
			
		||||
 
 | 
			
		||||
@@ -3,10 +3,24 @@
 | 
			
		||||
  <doc-alert title="多数据源(读写分离)" url="https://doc.iocoder.cn/dynamic-datasource/" />
 | 
			
		||||
 | 
			
		||||
  <ContentWrap>
 | 
			
		||||
    <IFrame :src="src" />
 | 
			
		||||
    <IFrame v-if="!loading" :src="url" />
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="Druid">
 | 
			
		||||
const BASE_URL = import.meta.env.VITE_BASE_URL
 | 
			
		||||
const src = ref(BASE_URL + '/druid/index.html')
 | 
			
		||||
import * as ConfigApi from '@/api/infra/config'
 | 
			
		||||
 | 
			
		||||
const loading = ref(true) // 是否加载中
 | 
			
		||||
const url = ref(import.meta.env.VITE_BASE_URL + '/druid/index.html')
 | 
			
		||||
 | 
			
		||||
/** 初始化 */
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  try {
 | 
			
		||||
    const data = await ConfigApi.getConfigKey('url.druid')
 | 
			
		||||
    if (data && data.length > 0) {
 | 
			
		||||
      url.value = data
 | 
			
		||||
    }
 | 
			
		||||
  } finally {
 | 
			
		||||
    loading.value = false
 | 
			
		||||
  }
 | 
			
		||||
})
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,25 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <doc-alert title="服务监控" url="https://doc.iocoder.cn/server-monitor/" />
 | 
			
		||||
 | 
			
		||||
  <ContentWrap>
 | 
			
		||||
    <IFrame :src="src" />
 | 
			
		||||
    <IFrame v-if="!loading" v-loading="loading" :src="src" />
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="AdminServer">
 | 
			
		||||
const BASE_URL = import.meta.env.VITE_BASE_URL
 | 
			
		||||
const src = ref(BASE_URL + '/admin/applications')
 | 
			
		||||
import * as ConfigApi from '@/api/infra/config'
 | 
			
		||||
 | 
			
		||||
const loading = ref(true) // 是否加载中
 | 
			
		||||
const src = ref(import.meta.env.VITE_BASE_URL + '/admin/applications')
 | 
			
		||||
 | 
			
		||||
/** 初始化 */
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  try {
 | 
			
		||||
    const data = await ConfigApi.getConfigKey('url.spring-boot-admin')
 | 
			
		||||
    if (data && data.length > 0) {
 | 
			
		||||
      src.value = data
 | 
			
		||||
    }
 | 
			
		||||
  } finally {
 | 
			
		||||
    loading.value = false
 | 
			
		||||
  }
 | 
			
		||||
})
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,9 +1,25 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <doc-alert title="服务监控" url="https://doc.iocoder.cn/server-monitor/" />
 | 
			
		||||
 | 
			
		||||
  <ContentWrap>
 | 
			
		||||
    <IFrame :src="src" />
 | 
			
		||||
    <IFrame v-if="!loading" v-loading="loading" :src="src" />
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="Skywalking">
 | 
			
		||||
import * as ConfigApi from '@/api/infra/config'
 | 
			
		||||
 | 
			
		||||
const loading = ref(true) // 是否加载中
 | 
			
		||||
const src = ref('http://skywalking.shop.iocoder.cn')
 | 
			
		||||
 | 
			
		||||
/** 初始化 */
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  try {
 | 
			
		||||
    const data = await ConfigApi.getConfigKey('url.skywalking')
 | 
			
		||||
    if (data && data.length > 0) {
 | 
			
		||||
      src.value = data
 | 
			
		||||
    }
 | 
			
		||||
  } finally {
 | 
			
		||||
    loading.value = false
 | 
			
		||||
  }
 | 
			
		||||
})
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,21 @@
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="Swagger">
 | 
			
		||||
const BASE_URL = import.meta.env.VITE_BASE_URL
 | 
			
		||||
// const src = ref(BASE_URL + '/doc.html')
 | 
			
		||||
const src = ref(BASE_URL + '/swagger-ui')
 | 
			
		||||
import * as ConfigApi from '@/api/infra/config'
 | 
			
		||||
 | 
			
		||||
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>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user