feat: add streaming-only options for daily first gift and check-in points

This commit is contained in:
2025-10-16 02:08:44 +08:00
parent e81f09514f
commit dfc1a9d709
3 changed files with 31 additions and 0 deletions

View File

@@ -65,6 +65,8 @@ const defaultPointSetting: Setting_Point = {
dailyFirstGiftPoints: 10,
useDailyFirstGiftPercent: false,
dailyFirstGiftPercent: 0.1,
dailyFirstOnlyOnStreaming: false,
checkInOnlyOnStreaming: false,
}
const serverSetting = computed<Setting_Point>(() => {
return (accountInfo.value?.settings?.point ?? defaultPointSetting)