From b553d9aab7338f5b509aefdb0ccccfe2930c714c Mon Sep 17 00:00:00 2001 From: junge <378482532@qq.com> Date: Mon, 2 Feb 2026 17:40:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=9F=E5=9E=8B=E8=AE=BE=E8=AE=A1=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + DESIGN_PROMPTS.md | 99 + index.html | 12 + mock/index.ts | 20 + mock/modules.ts | 37 + mock/training.ts | 163 ++ package-lock.json | 3477 ++++++++++++++++++++++++++++ package.json | 30 + src/App.vue | 19 + src/env.d.ts | 6 + src/layout/index.vue | 52 + src/main.ts | 20 + src/router/index.ts | 55 + src/style.css | 8 + src/views/dashboard/index.vue | 120 + src/views/data-dashboard/index.vue | 78 + src/views/personnel/index.vue | 15 + src/views/training/detail.vue | 354 +++ src/views/training/index.vue | 464 ++++ src/views/training/study.vue | 484 ++++ tsconfig.json | 25 + vite.config.ts | 14 + 22 files changed, 5554 insertions(+) create mode 100644 .gitignore create mode 100644 DESIGN_PROMPTS.md create mode 100644 index.html create mode 100644 mock/index.ts create mode 100644 mock/modules.ts create mode 100644 mock/training.ts create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 src/App.vue create mode 100644 src/env.d.ts create mode 100644 src/layout/index.vue create mode 100644 src/main.ts create mode 100644 src/router/index.ts create mode 100644 src/style.css create mode 100644 src/views/dashboard/index.vue create mode 100644 src/views/data-dashboard/index.vue create mode 100644 src/views/personnel/index.vue create mode 100644 src/views/training/detail.vue create mode 100644 src/views/training/index.vue create mode 100644 src/views/training/study.vue create mode 100644 tsconfig.json create mode 100644 vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de4d1f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +dist +node_modules diff --git a/DESIGN_PROMPTS.md b/DESIGN_PROMPTS.md new file mode 100644 index 0000000..ca26a2a --- /dev/null +++ b/DESIGN_PROMPTS.md @@ -0,0 +1,99 @@ +# 产品设计系统 - 提示词 (Prompt) 约束指南 + +本指南旨在规范如何使用 AI 辅助生成符合 `Funtime Design System` 标准的代码和内容。本系统基于 **Vue 3 + TypeScript + Element Plus + Pinia** 构建。 + +## 1. 技术栈约束 (Tech Stack Constraints) + +在生成代码时,请始终遵循以下技术栈版本和规范: + +- **框架**: Vue 3 (Composition API, ` +``` diff --git a/index.html b/index.html new file mode 100644 index 0000000..6fbca09 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + +
+ + +Select a module to get started
+ +{{ module.description }}
+Tom committed 2024/04/12 20:46
+Tom committed 2024/04/03 20:46
+Welcome to the Personnel Evaluation module.
+更新时间:{{ course.updateTime }}
+ +{{ currentChapter.content || '暂无介绍' }}
+