重构套餐管理页面 & 修复支付弹窗无法打开问题 & 修复用户中心展示问题

This commit is contained in:
2025-12-16 14:10:50 +08:00
parent 363fd39298
commit 427502489e
9 changed files with 446 additions and 645 deletions

View File

@@ -1,8 +1,10 @@
import {ReactNode} from 'react'
import {ClassNameValue, twMerge} from 'tailwind-merge'
// 通用组件类型
export type Children = {children: ReactNode}
// 合并 className
export function merge(...inputs: ClassNameValue[]) {
return twMerge(inputs)
}
export type Children = {children: ReactNode}