Compare commits

...

10 Commits

Author SHA1 Message Date
zhihui 0255ceba02 加时间复杂度 2026-06-16 10:23:48 +08:00
zhihui daf9e50938 add python code 2026-06-16 09:35:51 +08:00
zhihui daecbf4603 add drawer effect 2026-06-16 09:25:40 +08:00
zhihui b8eff40c00 toggle menu class 2026-06-16 09:19:33 +08:00
zhihui f1b4b54e19 align:left 2026-06-16 09:09:11 +08:00
zhihui 3144bcd193 add test 2026-06-16 09:00:09 +08:00
zhihui c276c2dd86 add comment 2026-06-16 00:14:21 +08:00
zhihui ae0ba59ccb jenkins url 2026-06-15 23:42:52 +08:00
zhihui e524ede8af auto 2026-06-15 10:59:56 +08:00
zhihui 4640c5e02b add 2026-06-15 09:00:38 +08:00
207 changed files with 9309 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# C 编译器运行服务 - 编译器二进制文件
server/bin/
server/*.ps1
tmp/
+3
View File
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}
+5
View File
@@ -0,0 +1,5 @@
# Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).
+15
View File
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>算法分析与设计 - 教学辅助平台</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
+3583
View File
File diff suppressed because it is too large Load Diff
+28
View File
@@ -0,0 +1,28 @@
{
"name": "suanfa",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server/server.cjs",
"start": "node server/server.js & vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"vue": "^3.5.34",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.11",
"jsdom": "^29.1.1",
"vite": "^8.0.12",
"vitest": "^4.1.8"
}
}

Some files were not shown because too many files have changed in this diff Show More