初始化

This commit is contained in:
乘风
2026-04-13 14:32:32 +08:00
parent b1cc4be1c2
commit 3cc33c7d7a
197 changed files with 17286 additions and 5095 deletions

View File

@@ -25,7 +25,7 @@ class ChapterAccessManager {
const res = await app.getConfig()
if (res && res.success && res.prices) {
return {
prices: res.prices || { section: 1, fullbook: 9.9 },
prices: res.prices || { section: 1, fullbook: 365 },
shareRate: res.shareRate != null ? res.shareRate : 90
}
}
@@ -33,7 +33,7 @@ class ChapterAccessManager {
console.warn('[AccessManager] 获取配置失败,使用默认配置:', e)
}
return {
prices: { section: 1, fullbook: 9.9 },
prices: { section: 1, fullbook: 365 },
shareRate: 90
}
}