feat: 添加 UniApp 核心源码文件

- App.vue 应用入口
- algorithms/ 算法模块(黄历、紫微斗数、运势、日历等)
- services/ 业务服务层
- utils/ 工具函数(storage、exportImport)
- 配置文件(manifest.json、pages.json、vite.config.ts)
- H5 入口 index.html
This commit is contained in:
张翔
2026-04-29 21:15:55 +08:00
parent 330c3af227
commit 0c9a4ac96b
20 changed files with 3576 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<title>万事宜</title>
<!--preload-links-->
<!--app-context-->
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/main"></script>
</body>
</html>