init: 初始化 dpb 桃育种系统代码库

前后端 + 后端 FastAPI 全量源码、部署脚本与文档。
This commit is contained in:
34047007@qq.com
2026-08-06 00:17:49 +08:00
commit b95053c52c
1469 changed files with 322298 additions and 0 deletions
@@ -0,0 +1,48 @@
<!-- 接口文档 -->
<template>
<div class="box-border w-full h-full" v-loading="isLoading">
<iframe
ref="iframeRef"
:src="iframeUrl"
frameborder="0"
class="w-full h-full min-h-[calc(100vh-120px)] border-none"
@load="handleIframeLoad"
></iframe>
</div>
</template>
<script setup lang="ts">
import { IframeRouteManager } from "@/router";
defineOptions({ name: "Docs", inheritAttrs: false });
const url = import.meta.env.VITE_APP_BASE_API + "/docs";
const route = useRoute();
const isLoading = ref(true);
const iframeUrl = ref(url);
const iframeRef = ref<HTMLIFrameElement | null>(null);
onBeforeUnmount(() => {
window.onresize = null;
});
/**
* 初始化 iframe URL
* 从路由配置中获取对应的外部链接地址
*/
onMounted(() => {
const iframeRoute = IframeRouteManager.getInstance().findByPath(route.path);
if (iframeRoute?.meta?.link) {
iframeUrl.value = iframeRoute.meta.link;
}
});
/**
* 处理 iframe 加载完成事件
* 隐藏加载状态
*/
const handleIframeLoad = (): void => {
isLoading.value = false;
};
</script>