Files
one-pipe-system/src/config/festival.ts
sexygoat 222e5bb11a Initial commit: One Pipe System
完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-22 16:35:33 +08:00

24 lines
705 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 节日配置
* 包含:礼花效果、滚动文字
*/
// 图片需要在 components/Ceremony/Fireworks 文件预先定义
import { FestivalConfig } from '@/types/config'
import sd from '@imgs/ceremony/sd.png'
import yd from '@imgs/ceremony/yd.png'
export const festivalConfigList: FestivalConfig[] = [
{
date: '2025-01-01',
name: '元旦',
image: yd,
scrollText: '新年快乐Art Design Pro 祝您在2025年万事如意事业腾飞阖家幸福好运连连'
},
{
date: '2024-12-25',
name: '圣诞节',
image: sd,
scrollText: 'Merry ChristmasArt Design Pro 祝您圣诞快乐,愿节日的欢乐与祝福如雪花般纷至沓来!'
}
]