From 2a2274716e00ad178caf9a66c321d02ce3bb81a7 Mon Sep 17 00:00:00 2001 From: admin <572701190@qq.com> Date: Mon, 18 May 2026 18:02:13 +0800 Subject: [PATCH] fix reactive resume page loading --- .env | 2 +- ...ch-reactive-resume-service-worker-cache.sh | 87 +- ...志博-医工智能外科简历-备份-20260518T175949.json | 1188 +++++++++++++++++ .../王志博-ReactiveResume-线上发布版.json | 2 +- 4 files changed, 1267 insertions(+), 12 deletions(-) create mode 100644 生成简历/backups/王志博-医工智能外科简历-备份-20260518T175949.json diff --git a/.env b/.env index 91b6fde..14f1cbd 100644 --- a/.env +++ b/.env @@ -44,7 +44,7 @@ S3_ENDPOINT= S3_BUCKET= S3_FORCE_PATH_STYLE=false REDIS_URL= -ENCRYPTION_SECRET= +ENCRYPTION_SECRET=10ddcad9814eaa5fa5bef8ba85d58a8122f3ede148bad11bc340899b5014af45 CLOUDFLARE_ACCOUNT_ID= CLOUDFLARE_API_TOKEN= FLAG_DISABLE_SIGNUPS=false diff --git a/scripts/patch-reactive-resume-service-worker-cache.sh b/scripts/patch-reactive-resume-service-worker-cache.sh index 785ff89..4c42d99 100755 --- a/scripts/patch-reactive-resume-service-worker-cache.sh +++ b/scripts/patch-reactive-resume-service-worker-cache.sh @@ -8,18 +8,27 @@ set -eu SSR_FILE="/app/apps/web/.output/server/_ssr/pdf-document-COfeOLVC.mjs" SW_FILE="/app/apps/web/.output/public/sw.js" +SERVER_INDEX_FILE="/app/apps/web/.output/server/index.mjs" +SSR_RENDERER_FILE="/app/apps/web/.output/server/_chunks/ssr-renderer.mjs" -cp "$SSR_FILE" "$SSR_FILE.bak-sw-cache" 2>/dev/null || true -cp "$SW_FILE" "$SW_FILE.bak-sw-cache" 2>/dev/null || true +test -f "$SSR_FILE.bak-sw-cache" || cp "$SSR_FILE" "$SSR_FILE.bak-sw-cache" 2>/dev/null || true +test -f "$SW_FILE.bak-sw-cache" || cp "$SW_FILE" "$SW_FILE.bak-sw-cache" 2>/dev/null || true +test -f "$SERVER_INDEX_FILE.bak-sw-cache" || cp "$SERVER_INDEX_FILE" "$SERVER_INDEX_FILE.bak-sw-cache" 2>/dev/null || true +test -f "$SSR_RENDERER_FILE.bak-sw-cache" || cp "$SSR_RENDERER_FILE" "$SSR_RENDERER_FILE.bak-sw-cache" 2>/dev/null || true node - <<'NODE' const fs = require("fs"); +const crypto = require("crypto"); const ssrFile = "/app/apps/web/.output/server/_ssr/pdf-document-COfeOLVC.mjs"; const swFile = "/app/apps/web/.output/public/sw.js"; +const serverIndexFile = "/app/apps/web/.output/server/index.mjs"; +const ssrRendererFile = "/app/apps/web/.output/server/_chunks/ssr-renderer.mjs"; const registrationScript = ` -\tif ("serviceWorker" in navigator) { +\t(() => { +\t\tif (!("serviceWorker" in navigator)) return; + \t\twindow.addEventListener("load", () => { \t\t\tconst clearReactiveResumeCaches = async () => { \t\t\t\tif ("caches" in window) { @@ -33,14 +42,9 @@ const registrationScript = ` \t\t\t\t} \t\t\t}; -\t\t\tclearReactiveResumeCaches().then(() => { -\t\t\t\tif (navigator.serviceWorker.controller && !sessionStorage.getItem("rr-sw-cache-cleared-v1")) { -\t\t\t\t\tsessionStorage.setItem("rr-sw-cache-cleared-v1", "1"); -\t\t\t\t\twindow.location.reload(); -\t\t\t\t} -\t\t\t}).catch(console.error); +\t\t\tclearReactiveResumeCaches().catch(console.error); \t\t}); -\t} +\t})(); `; let ssr = fs.readFileSync(ssrFile, "utf8"); @@ -87,8 +91,71 @@ self.addEventListener("activate", (event) => { self.addEventListener("fetch", () => {}); `; fs.writeFileSync(swFile, sw); + +function makeEtag(buffer) { + const digest = crypto.createHash("sha1").update(buffer).digest("base64").replace(/=+$/g, ""); + return `"${buffer.length.toString(16)}-${digest}"`; +} + +function patchStaticManifestEntry(source, urlPath, filePath) { + const buffer = fs.readFileSync(filePath); + const startMarker = `"${urlPath}": {`; + const start = source.indexOf(startMarker); + if (start === -1) { + throw new Error(`Static manifest entry not found for ${urlPath}`); + } + + const end = source.indexOf("\n\t},", start); + if (end === -1) { + throw new Error(`Static manifest entry end not found for ${urlPath}`); + } + + let entry = source.slice(start, end); + entry = entry + .replace(/"etag": "(?:\\.|[^"\\])*"/, `"etag": ${JSON.stringify(makeEtag(buffer))}`) + .replace(/"mtime": "(?:\\.|[^"\\])*"/, `"mtime": ${JSON.stringify(new Date().toISOString())}`) + .replace(/"size": \d+/, `"size": ${buffer.length}`); + + return source.slice(0, start) + entry + source.slice(end); +} + +let serverIndex = fs.readFileSync(serverIndexFile, "utf8"); +serverIndex = patchStaticManifestEntry(serverIndex, "/sw.js", swFile); +fs.writeFileSync(serverIndexFile, serverIndex); + +let ssrRenderer = fs.readFileSync(ssrRendererFile, "utf8"); +const ssrRendererOriginal = `function ssrRenderer({ req }) { +\treturn fetchViteEnv("ssr", req); +}`; +const ssrRendererPatched = `async function ssrRenderer(event) { +\tconst response = await fetchViteEnv("ssr", event.req); +\tconst headers = new Headers(response.headers); +\tconst accept = event.req.headers.get("accept") || ""; + +\tif (accept.includes("text/html")) { +\t\theaders.set("Cache-Control", "no-store, max-age=0"); +\t\theaders.set("Pragma", "no-cache"); +\t\theaders.set("Expires", "0"); +\t} + +\treturn new Response(response.body, { +\t\tstatus: response.status, +\t\tstatusText: response.statusText, +\t\theaders, +\t}); +}`; +if (!ssrRenderer.includes(ssrRendererPatched)) { + if (!ssrRenderer.includes(ssrRendererOriginal)) { + throw new Error("SSR renderer marker not found"); + } + + ssrRenderer = ssrRenderer.replace(ssrRendererOriginal, ssrRendererPatched); + fs.writeFileSync(ssrRendererFile, ssrRenderer); +} NODE node --check "$SSR_FILE" >/dev/null node --check "$SW_FILE" >/dev/null +node --check "$SERVER_INDEX_FILE" >/dev/null +node --check "$SSR_RENDERER_FILE" >/dev/null SH diff --git a/生成简历/backups/王志博-医工智能外科简历-备份-20260518T175949.json b/生成简历/backups/王志博-医工智能外科简历-备份-20260518T175949.json new file mode 100644 index 0000000..be984dc --- /dev/null +++ b/生成简历/backups/王志博-医工智能外科简历-备份-20260518T175949.json @@ -0,0 +1,1188 @@ +{ + "basics": { + "name": "王志博", + "email": "zub572701190@stu.xjtu.edu.cn", + "phone": "+86 139-4611-2059", + "website": { + "url": "https://me.huijutec.cn/audience/resume", + "label": "me.huijutec.cn/audience/resume" + }, + "headline": "AI 医工交叉博士|智能外科与微创手术导航|多模态大模型与临床转化", + "location": "陕西西安|西安交通大学", + "customFields": [ + { + "id": "e990ae50-03d6-40e7-97e2-c756253af5c6", + "icon": "student", + "link": "", + "text": "少年班 / 人工智能试验班 / 医工学直博" + }, + { + "id": "d66c2064-2cd0-4401-af7a-e660ab406770", + "icon": "ranking", + "link": "", + "text": "综合测评 1/28|英语六级 509" + }, + { + "id": "1300362c-688d-40d7-94d4-c84e32523c67", + "icon": "heartbeat", + "link": "", + "text": "智能外科|术中影像|图文病历|医疗 AI" + } + ] + }, + "picture": { + "url": "https://me.huijutec.cn/uploads/019e2a40-5e4a-7303-a19a-c73de7a9b9b8/pictures/2025-profile.jpg", + "size": 62, + "hidden": false, + "rotation": 0, + "aspectRatio": 0.75, + "borderColor": "rgba(11, 95, 112, 1)", + "borderWidth": 0, + "shadowColor": "rgba(15, 23, 42, 0.24)", + "shadowWidth": 0, + "borderRadius": 3 + }, + "summary": { + "title": "个人简介", + "hidden": false, + "columns": 1, + "content": "

西安交通大学未来技术学院医工学方向博士研究生,中共党员,少年班与人工智能试验班背景。长期面向微创外科、术中影像分析、智能导航和图文病历生成等真实临床场景,推进医学问题定义、AI 算法研发、系统工程实现、专利论文产出、竞赛验证与成果转化的闭环实践,形成兼具科研深度、工程落地和组织协同能力的医工交叉特色

" + }, + "metadata": { + "page": { + "gapX": 4.2, + "gapY": 0.85, + "format": "a4", + "locale": "zh-CN", + "marginX": 8.4, + "marginY": 8.8, + "hideIcons": false + }, + "notes": "Design direction: refined clinical-tech academic profile. Glalie two-column layout, wider A4 margins, CJK-first typography, navy-blue medical technology accent, and two-page hierarchy for personal achievements and translational impact.", + "design": { + "level": { + "icon": "star", + "type": "hidden" + }, + "colors": { + "text": "rgba(17, 24, 39, 1)", + "primary": "rgba(28, 70, 88, 1)", + "background": "rgba(255, 255, 255, 1)" + } + }, + "layout": { + "pages": [ + { + "main": [ + "summary", + "awards", + "education", + "projects", + "1014b66d-3de1-4bf4-903c-93e7f07c8f81" + ], + "sidebar": [ + "f4fa59b9-34cf-41b0-b324-f07f07934fc2", + "skills", + "languages", + "802bfd76-af47-4c5d-8b04-f89a38932dcd", + "volunteer" + ], + "fullWidth": false + }, + { + "main": [ + "experience", + "54972f49-3c83-4912-b429-dc659a02eda9", + "752ddba0-3400-4e33-8f54-49fc3a4b57b9", + "certifications", + "36ba1eaf-0984-4863-9b4b-691374ee27aa", + "559335bd-99c4-44c2-97b6-420b011415f7" + ], + "sidebar": [], + "fullWidth": true + } + ], + "sidebarWidth": 29.2 + }, + "template": "glalie", + "typography": { + "body": { + "fontSize": 6.65, + "fontFamily": "Noto Sans SC", + "lineHeight": 1.14, + "fontWeights": [ + "400", + "500", + "600" + ] + }, + "heading": { + "fontSize": 8.85, + "fontFamily": "Noto Serif SC", + "lineHeight": 1.12, + "fontWeights": [ + "600", + "700" + ] + } + } + }, + "sections": { + "awards": { + "items": [ + { + "id": "f25ead8c-57eb-4421-8d7c-494d0e7c0118", + "date": "2024", + "title": "博士国家奖学金(证书号 BSY202407542)", + "hidden": false, + "awarder": "教育部", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "d05f036d-f81e-4090-a6a1-0dd53eb2e6ba", + "date": "2023", + "title": "博士国家奖学金(证书号 BSY202303836)", + "hidden": false, + "awarder": "教育部", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "c81e732c-8a95-406b-adcd-f8f56db00407", + "date": "2025", + "title": "陕西省研究生创新成果展 A 类成果", + "hidden": false, + "awarder": "陕西省教育厅", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "09cfe17f-a90d-42cd-8ca6-dbabc817782a", + "date": "2024", + "title": "陕西省研究生创新成果展 A 类成果", + "hidden": false, + "awarder": "陕西省教育厅", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "4bb24894-f47a-4e97-a980-8b1171a3a148", + "date": "2025", + "title": "西安交通大学优秀研究生", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "05c69be9-f179-4b60-b20f-2f29df71c6d8", + "date": "2024", + "title": "西安交通大学优秀研究生", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "3d2e410a-cc9a-46f9-98db-d8e3128ef07c", + "date": "2023", + "title": "西安交通大学优秀研究生", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "eb4b8f1f-65e2-4287-a114-be59b47406d8", + "date": "2025", + "title": "未来技术太湖奖学金“创业实践一等奖”", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "65f9424e-b979-4346-9a26-15a42eff4ca9", + "date": "2024", + "title": "西安交通大学中国移动奖学金一等奖", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "72c70673-8262-47d6-aa20-3180f0ee040b", + "date": "2023", + "title": "未来技术太湖奖学金“创新奖学金”", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "80648972-0619-48d9-82a3-7011f9e37a3c", + "date": "2023", + "title": "西安交通大学产教融合之星", + "hidden": false, + "awarder": "西安交通大学", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + } + ], + "title": "荣誉奖学金", + "hidden": false, + "columns": 1 + }, + "skills": { + "items": [ + { + "id": "ca9c3e8a-18d2-4e98-b6cb-30e53f7e2898", + "icon": "code", + "name": "编程与工程", + "level": 4, + "hidden": false, + "keywords": [ + "Python", + "MATLAB", + "R", + "C/C++", + "Unity" + ], + "iconColor": "", + "proficiency": "" + }, + { + "id": "2ff6eec8-a0eb-4d12-90c5-c323797a121a", + "icon": "brain", + "name": "医疗 AI / 大模型", + "level": 4, + "hidden": false, + "keywords": [ + "多模态大模型", + "RAG", + "Mamba", + "图文报告生成", + "知识库" + ], + "iconColor": "", + "proficiency": "" + }, + { + "id": "aa9ba8d0-5dbd-4744-b84c-c15f21441ccb", + "icon": "heartbeat", + "name": "医学影像算法", + "level": 4, + "hidden": false, + "keywords": [ + "CT", + "超声", + "腔镜图像", + "分割识别", + "去雾", + "低剂量重建" + ], + "iconColor": "", + "proficiency": "" + }, + { + "id": "592dbba5-a949-4756-8d31-55960893fa76", + "icon": "cube", + "name": "智能装备与转化", + "level": 4, + "hidden": false, + "keywords": [ + "微创导航", + "磁定位", + "器官配准", + "VR 原型", + "临床部署" + ], + "iconColor": "", + "proficiency": "" + } + ], + "title": "能力标签", + "hidden": false, + "columns": 1 + }, + "profiles": { + "items": [], + "title": "社交资料", + "hidden": true, + "columns": 1 + }, + "projects": { + "items": [ + { + "id": "610f897c-bc19-47b7-9aab-4ee38c1240a0", + "name": "手术图文病历报告自动生成系统", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "17beb594-5513-4788-9db8-77cde270a476", + "name": "多设备兼容的术中影像记录分析系统", + "hidden": false, + "period": "2025 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "64fe9ea6-7efc-47f8-bed0-2fa883211ef4", + "name": "微创化手术智能导航平台建设", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "d6691fc3-c992-482d-8592-3904b9bb1af1", + "name": "磁定位辅助多模态融合微创手术组织自动配准系统", + "hidden": false, + "period": "2024 - 2025", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + } + ], + "title": "核心项目", + "hidden": false, + "columns": 1 + }, + "education": { + "items": [ + { + "id": "f1c24419-e5ea-439c-b737-a4a06b0251c6", + "area": "生物医学工程 / 医工学方向", + "grade": "综合测评 1/28", + "degree": "博士研究生在读", + "hidden": false, + "period": "2022.09 - 至今", + "school": "西安交通大学未来技术学院", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "西安", + "description": "" + }, + { + "id": "17863b1a-cfbc-4990-b870-ff3485048b40", + "area": "人工智能试验班", + "grade": "", + "degree": "本科", + "hidden": false, + "period": "2018.09 - 2022.07", + "school": "西安交通大学人工智能学院", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "西安", + "description": "

人工智能背景,支撑后续医学影像算法、临床大模型和智能外科工程研发

" + }, + { + "id": "125d97f1-ba3f-4331-9998-005d534c5aeb", + "area": "少年班", + "grade": "", + "degree": "预科", + "hidden": false, + "period": "2016.09 - 2018.07", + "school": "西安交通大学少年班", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "西安", + "description": "" + } + ], + "title": "教育背景", + "hidden": false, + "columns": 1 + }, + "interests": { + "items": [ + { + "id": "469cc8d5-b041-4f02-9ce5-83961cc00727", + "icon": "stethoscope", + "name": "医工交叉", + "hidden": false, + "keywords": [ + "AI + 临床", + "智能外科" + ], + "iconColor": "" + }, + { + "id": "43ab8051-a0e5-422e-b2b1-90c6a30311da", + "icon": "rocket", + "name": "成果转化", + "hidden": false, + "keywords": [ + "创业资助", + "专利转化", + "医疗装备" + ], + "iconColor": "" + }, + { + "id": "4721af36-ae2a-47f4-9852-4d71e7f5e44a", + "icon": "database", + "name": "数据要素", + "hidden": false, + "keywords": [ + "术中影像", + "质控", + "图文报告" + ], + "iconColor": "" + } + ], + "title": "关键词", + "hidden": false, + "columns": 1 + }, + "languages": { + "items": [ + { + "id": "464fc1b7-10b4-483c-a6d1-da09044a1db2", + "level": 4, + "hidden": false, + "fluency": "CET-6 509", + "language": "英语" + } + ], + "title": "语言能力", + "hidden": false, + "columns": 1 + }, + "volunteer": { + "items": [ + { + "id": "50c41f06-d048-48d6-a5b0-c67521104562", + "hidden": false, + "period": "2022 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

宣传委员

", + "organization": "未来技术学院医工学博士党支部" + }, + { + "id": "bbc0e308-86db-4894-a136-24b80555d25c", + "hidden": false, + "period": "2024", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

学习部负责人;第十五次研究生代表大会代表

", + "organization": "未来技术学院学生会 / 研究生会" + }, + { + "id": "72a41ed7-2ce6-4c36-a524-aac20b6a7bef", + "hidden": false, + "period": "2026", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

第一次党员代表大会代表

", + "organization": "未来技术学院党员代表大会" + }, + { + "id": "0e5bd75f-e635-44c7-8379-43fdc2dc45b8", + "hidden": false, + "period": "2022 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

学习委员

", + "organization": "未来技术学院 B2275 班班委" + } + ], + "title": "校内任职", + "hidden": false, + "columns": 1 + }, + "experience": { + "items": [ + { + "id": "1c11ea79-aec6-4c80-8c3d-3958ec16e010", + "roles": [], + "hidden": false, + "period": "2025 - 2028", + "company": "国家自然科学基金面上项目(82471190)", + "website": { + "url": "https://me.huijutec.cn/audience/resume", + "label": "", + "inlineLink": true + }, + "location": "", + "position": "主要工科参与人", + "description": "

基于多模态磁导航技术的困难气道插管系统的研究;49 万元;在研

" + }, + { + "id": "0b95f627-8395-4242-9f60-8fa0f1bb491c", + "roles": [], + "hidden": false, + "period": "2023 - 2026", + "company": "西安交通大学第一附属医院 医智慧研究院项目", + "website": { + "url": "https://me.huijutec.cn/audience/resume", + "label": "", + "inlineLink": true + }, + "location": "", + "position": "主要工科参与人(第三序位)", + "description": "

微创化手术智能导航平台建设;70万元;在研

" + }, + { + "id": "47a5d869-535f-42e2-8ac7-bd927853b973", + "roles": [], + "hidden": false, + "period": "2024 - 2025", + "company": "西安交通大学基本科研业务费自由探索学生类项目", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "position": "主持", + "description": "

磁定位辅助多模态融合微创手术组织自动配准系统;3 万元;结题

" + }, + { + "id": "affc3464-2cad-4ea4-8399-162bd2c2e2eb", + "roles": [], + "hidden": false, + "period": "2023 - 2025", + "company": "教育部产学合作协同育人项目", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "position": "主要工科参与人(第三序位)", + "description": "

微创手术导航训练虚拟平台建设研究;20万元,结题

" + }, + { + "id": "eb837f99-e47f-4ec9-9c8b-0fb879302889", + "roles": [], + "hidden": false, + "period": "2023 - 2024", + "company": "西安交通大学基本科研业务费自由探索学生类项目", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "position": "主要工科参与人(第三序位)", + "description": "

微创化手术智能导航平台建设;3 万元;结题

" + } + ], + "title": "科研与获批项目", + "hidden": false, + "columns": 1 + }, + "references": { + "items": [], + "title": "推荐人", + "hidden": true, + "columns": 1 + }, + "publications": { + "items": [ + { + "id": "2dc963e2-885d-4ba5-b520-544d5059a606", + "date": "2025", + "title": "Development of an AI-driven digital assistance system for real-time safety evaluation and quality control in laparoscopic liver surgery", + "hidden": false, + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "publisher": "Frontiers in Oncology", + "description": "

共同第一作者

" + }, + { + "id": "857e2a52-7818-404c-8350-2df1aed6cc4b", + "date": "2023/2024", + "title": "智能化辅助图像实时去雾技术在腹腔镜胆囊切除术中的应用研究", + "hidden": false, + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "publisher": "中华肝脏外科手术学电子杂志", + "description": "

共同一作作者,腔镜术中图像处理

" + }, + { + "id": "97e962cf-49ca-434c-92c2-b73e8fc64147", + "date": "2023", + "title": "增强现实、虚拟现实与混合现实在腔镜肝脏外科中的应用进展", + "hidden": false, + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "publisher": "中华肝脏外科手术学电子杂志", + "description": "

共同一作作者,腔镜肝脏外科与扩展现实综述

" + } + ], + "title": "论文与会议", + "hidden": true, + "columns": 1 + }, + "certifications": { + "items": [ + { + "id": "d86c28fb-627a-41d9-a159-48bb3f900e7b", + "date": "ZL 2022 1 1431692.6", + "title": "一种抗干扰单面导通微针电极及制备方法", + "hidden": false, + "issuer": "第一发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "31ddd9af-bbc7-4fb4-9c1b-b7cd0a3e8475", + "date": "ZL 2022 1 0478532.0", + "title": "一种具有绝缘薄膜的微针阵列电极及其制备方法", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "97b699c3-bd81-40b7-9b1e-9f30dbbbfb9e", + "date": "ZL 2024 1 1527344.8", + "title": "一种微创腔镜图文报告生成系统", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "c040ea98-8e25-465c-aefc-e0eae8c26427", + "date": "ZL 2025 1 0096041.3", + "title": "一种实时术中腔镜影像分析装置及方法", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "cf7fbf6a-d252-4f2c-aa1f-469a421117b2", + "date": "ZL 2025 1 0896530.7", + "title": "模型与器官配准以辅助导航的方法及系统", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "9654ba88-d9b8-4cb3-8292-dafb1b4de763", + "date": "ZL 2025 1 0933524.4", + "title": "一种喉部的体外磁靶标定位导航方法及系统", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "6d880973-bc72-42f3-a51f-1ace181c9639", + "date": "ZL 2025 1 0766744.2", + "title": "一种带有旋转永磁定位和选择性脑降温功能的气管导管装置及其温度控制方法", + "hidden": false, + "issuer": "第二发明人 授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "cd5980f7-0cf7-4576-afd0-fb8aba318e08", + "date": "ZL 2023 1 0062566.6", + "title": "一种多模态脑信号的意识状态分类系统及方法", + "hidden": false, + "issuer": "授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "8288c393-f35a-42be-b6a3-424c4cbb08d4", + "date": "ZL 2022 1 1379675.2", + "title": "一种用于临床意识检测的多模态信号采集眼罩", + "hidden": false, + "issuer": "授权发明专利", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "ddd28a8e-6b9a-40a2-9454-0d6d8b22b1e1", + "date": "2025R11L0487133", + "title": "图文病历报告生成软件", + "hidden": false, + "issuer": "软件著作权", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "3ddd8ae5-8a9c-4871-a170-97cf60cd1fea", + "date": "2025R11L1318535", + "title": "基于大规模视觉语言模型的图文病历报告自动生成系统", + "hidden": false, + "issuer": "软件著作权", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + } + ], + "title": "专利与软著", + "hidden": false, + "columns": 1 + } + }, + "customSections": [ + { + "id": "36ba1eaf-0984-4863-9b4b-691374ee27aa", + "type": "awards", + "items": [ + { + "id": "c16d28b2-3a20-4c5e-b1ef-419139406aad", + "date": "2025", + "title": "国家级一等奖|数智生命", + "hidden": false, + "awarder": "全国大学生电子商务“创新、创意及创业”挑战赛(三创赛) / 三创赛竞赛组织委员会", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "5c350966-0a9f-4c51-8bcc-77c16af29a32", + "date": "2025", + "title": "国家级三等奖|智康智影——智能外科向临床盲点进军", + "hidden": false, + "awarder": "第七届智慧医疗创新大赛 / 智慧医疗创新大赛组委会", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "de9d4e86-e8b1-4330-ba88-c3dc399a8f50", + "date": "2024", + "title": "国家级三等奖|杏林创涂——新一代纳米抗菌涂层领跑者", + "hidden": false, + "awarder": "“挑战杯”中国大学生创业计划竞赛 / 共青团中央、教育部等", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "f974f854-cf64-4559-8adb-7da582dd8848", + "date": "2024", + "title": "国家级二等奖|新一代纳米抗菌涂层领跑者", + "hidden": false, + "awarder": "第七届中国医疗器械创新创业大赛 / 中国医疗器械创新创业大赛组委会", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "066baf54-be1a-4c56-8cb5-d02d33f62a2d", + "date": "2024", + "title": "国家级二等奖|云链智康——新一代智能外科机要助理", + "hidden": false, + "awarder": "第六届智慧医疗创新大赛 / 智慧医疗创新大赛组委会", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "4b5cc7f2-f4af-484a-93ee-cc588cde720a", + "date": "2023", + "title": "国家级一等奖|云链智康——AI 辅助智能外科助手", + "hidden": false, + "awarder": "产业融合发展——新工科创新大赛 / 工业和信息化部工业文化发展中心", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "6a635d4a-ac93-4093-8574-6deba541d5c7", + "date": "2023", + "title": "国家级二等奖|云链智康:数据驱动下的临床微创手术新模式", + "hidden": false, + "awarder": "“华为杯”中国研究生人工智能创新大赛 / 中国学位与研究生教育学会、中国科协青少年科技中心", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "1171ae8b-e753-48f2-9866-c0cc50dbdbe2", + "date": "2023", + "title": "国家级二等奖", + "hidden": false, + "awarder": "第二届中国研究生“双碳”创新与创意大赛 / 中国学位与研究生教育学会、中国科协青少年科技中心", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "2ee9d130-c5e6-4ba3-a1b7-6864726d4cee", + "date": "2023", + "title": "国家级二等奖|术中宝——新一代术中医疗影像分析辅助装置", + "hidden": false, + "awarder": "全国大学生电子商务“创新、创意及创业”挑战赛(三创赛) / 三创赛竞赛组织委员会", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "f9966d23-051a-4b4b-91b5-37238f32194d", + "date": "2024", + "title": "省部级一等奖|智康智影——数字化赋能外科全链条诊疗体系", + "hidden": false, + "awarder": "中国国际大学生创新大赛陕西赛区 / 陕西省教育厅", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "bef745cf-22a4-42b2-9ab7-677325da0b99", + "date": "2024", + "title": "省部级一等奖|智康智影——数字化赋能新型临床体系构建", + "hidden": false, + "awarder": "“数据要素×”大赛陕西分赛医疗健康赛道 / 陕西省数据和政务服务局", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "36b7e7bc-1e0f-439e-8f3a-f72f80c7a3a4", + "date": "2024", + "title": "省部级一等奖|适用于肝胆外科手术的术中智能导航平台", + "hidden": false, + "awarder": "中美青年创客大赛陕西赛区 / 教育部", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + }, + { + "id": "f9b63a59-7e30-4df5-984b-d9288288f1e2", + "date": "2023", + "title": "省部级一等奖|云链智康——新一代智能外科机要助理", + "hidden": false, + "awarder": "中国国际“互联网+”大学生创新创业大赛陕西赛区 / 陕西省教育厅", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + } + ], + "title": "竞赛获奖", + "hidden": false, + "columns": 1 + }, + { + "id": "802bfd76-af47-4c5d-8b04-f89a38932dcd", + "type": "volunteer", + "items": [ + { + "id": "76390bf9-49d5-4fbc-98ab-6691477e982d", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

理事

", + "organization": "中医药信息学会中西医外科智能诊疗分会" + }, + { + "id": "c2291187-b7c3-48a2-820a-40e06836072b", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

青年理事

", + "organization": "中国抗癌协会" + }, + { + "id": "1f873e55-fde9-4b85-ab6f-d151d5b15d53", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

数字医疗专业委员会委员

", + "organization": "中国医药教育协会" + }, + { + "id": "e1bf3d6a-6018-4c3e-9330-3e7c3a2d89a1", + "hidden": false, + "period": "2024 - 至今", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "location": "", + "description": "

学生会员

", + "organization": "中国生物医学工程学会" + } + ], + "title": "学术组织任职", + "hidden": false, + "columns": 1 + }, + { + "id": "1014b66d-3de1-4bf4-903c-93e7f07c8f81", + "type": "summary", + "items": [ + { + "id": "c16accb2-c907-44bf-aa0c-89e0085c6a50", + "hidden": false, + "content": "

期刊论文

ACS Clinical Congress 2025

ACS / CMAIC / FIS 2023

" + } + ], + "title": "论文与会议", + "hidden": false, + "columns": 1 + }, + { + "id": "54972f49-3c83-4912-b429-dc659a02eda9", + "type": "summary", + "items": [ + { + "id": "8ed9e356-fdbf-4c6b-bf15-4033f40b85f5", + "hidden": false, + "content": "

" + } + ], + "title": "创新创业与成果转化", + "hidden": false, + "columns": 1 + }, + { + "id": "559335bd-99c4-44c2-97b6-420b011415f7", + "type": "summary", + "items": [ + { + "id": "83f3ac59-c07d-4270-b786-9234eaf1da92", + "hidden": false, + "content": "

" + } + ], + "title": "社会影响", + "hidden": false, + "columns": 1 + }, + { + "id": "752ddba0-3400-4e33-8f54-49fc3a4b57b9", + "type": "certifications", + "items": [ + { + "id": "b71f628c-04ea-4d2b-9452-35f4dc0e0054", + "date": "2024", + "title": "参编《2024中国数字医疗创新发展蓝皮书》", + "hidden": false, + "issuer": "编委", + "website": { + "url": "", + "label": "", + "inlineLink": false + }, + "description": "" + } + ], + "title": "编写著作", + "hidden": false, + "columns": 1 + }, + { + "id": "f4fa59b9-34cf-41b0-b324-f07f07934fc2", + "type": "summary", + "items": [ + { + "id": "dff431c1-739e-48f9-a835-6c8b1965c5a3", + "hidden": false, + "content": "

西安交通大学外科梦工场
吕毅教授课题组
导师:吴荣谦教授

" + } + ], + "title": "所在课题组", + "hidden": false, + "columns": 1 + } + ] +} diff --git a/生成简历/王志博-ReactiveResume-线上发布版.json b/生成简历/王志博-ReactiveResume-线上发布版.json index 7cf404e..be984dc 100644 --- a/生成简历/王志博-ReactiveResume-线上发布版.json +++ b/生成简历/王志博-ReactiveResume-线上发布版.json @@ -1113,7 +1113,7 @@ { "id": "c16accb2-c907-44bf-aa0c-89e0085c6a50", "hidden": false, - "content": "

期刊论文

ACS Clinical Congress 2025

ACS / CMAIC / FIS 2023

" + "content": "

期刊论文

ACS Clinical Congress 2025

ACS / CMAIC / FIS 2023

" } ], "title": "论文与会议",