Initial commit: One Pipe System
完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
23
src/config/festival.ts
Normal file
23
src/config/festival.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* 节日配置
|
||||
* 包含:礼花效果、滚动文字
|
||||
*/
|
||||
// 图片需要在 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 Christmas!Art Design Pro 祝您圣诞快乐,愿节日的欢乐与祝福如雪花般纷至沓来!'
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user