五件套徒手健身打卡应用:FastAPI+Vue3+PWA

This commit is contained in:
2026-08-13 06:33:56 +08:00
commit d529dad183
915 changed files with 295087 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

+14
View File
@@ -0,0 +1,14 @@
{
"name": "五件套 · 徒手健身打卡",
"short_name": "五件套",
"description": "俯卧撑 · 深蹲 · 卷腹 · 登山跑 · 平板支撑 每日打卡",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#fdfaf3",
"theme_color": "#f15a29",
"icons": [
{ "src": "/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
{ "src": "/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
]
}
+26
View File
@@ -0,0 +1,26 @@
const CACHE = 'workout-five-v1'
const ASSETS = ['/', '/manifest.json', '/icon-192.png', '/icon-512.png', '/apple-touch-icon.png']
self.addEventListener('install', (e) => {
e.waitUntil(caches.open(CACHE).then((c) => c.addAll(ASSETS)).then(() => self.skipWaiting()))
})
self.addEventListener('activate', (e) => {
e.waitUntil(
caches.keys().then((keys) => Promise.all(keys.filter((k) => k !== CACHE).map((k) => caches.delete(k)))).then(() => self.clients.claim())
)
})
self.addEventListener('fetch', (e) => {
const url = new URL(e.request.url)
if (e.request.method !== 'GET' || url.pathname.startsWith('/api/')) {
return // API 走网络
}
e.respondWith(
caches.match(e.request).then((hit) => hit || fetch(e.request).then((resp) => {
const clone = resp.clone()
caches.open(CACHE).then((c) => c.put(e.request, clone))
return resp
}))
)
})