fe17886ac4
- 车辆 / 洗车 / 加油 / 充电 / 保养 / 保险 完整 CRUD + 软删 - AI 截图识别(5 类型 OCR schema):OpenAI 兼容 + MiniMax M3 - 化学品 / Grocy 实例对接 + 库存镜像同步 - 仪表盘:30 天频次 + 健康度 + 同比环比 + 油价趋势 + 年均养护 - 月度报表:Excel 6 sheet + PDF - PWA:manifest / SW / 离线缓存 / iOS 引导 - 安全:bcrypt + CSRF + 登录锁定(IP/用户/全局三级)+ 401 自动跳登录 + 表单草稿 - 高 ROI 8 功能:里程/提醒/成本/搜索/标签/通知/同比/成就 - 3 个新 migration(0016/0017/0018)+ 18 个迁移全幂等 - 101/101 测试通过(含 ipRateLimit / CSRF / retry / stats / tags / notifications) - 部署:宝塔面板文档 + PM2 + Nginx
43 lines
2.1 KiB
HTML
43 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-Hans-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no">
|
|
<title>CarLog 车记 · 个人爱车管理</title>
|
|
<meta name="description" content="Vue 3 + Node.js 个人爱车记录系统">
|
|
<meta name="theme-color" content="#1B6EF3" media="(prefers-color-scheme: light)">
|
|
<meta name="theme-color" content="#0B4FB8" media="(prefers-color-scheme: dark)">
|
|
|
|
<!-- PWA -->
|
|
<link rel="manifest" href="/manifest.webmanifest">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/svg+xml" href="/pwa-icon.svg">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/pwa/apple-touch-icon.png">
|
|
|
|
<!-- iOS PWA -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="CarLog">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="msapplication-TileColor" content="#1B6EF3">
|
|
<meta name="msapplication-config" content="none">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet" media="print" onload="this.media='all'">
|
|
<noscript><link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet"></noscript>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<noscript>
|
|
<div style="padding:40px;text-align:center;font-family:system-ui">
|
|
<h1>CarLog 需要启用 JavaScript</h1>
|
|
<p>请在浏览器中开启 JavaScript 后刷新页面。</p>
|
|
</div>
|
|
</noscript>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|