修复购买套餐Input框和计算数量传参的问题 &

This commit is contained in:
Eamon-meng
2025-12-18 12:28:29 +08:00
parent 4288b0de10
commit 375a6f30c0
6 changed files with 41 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ export type WrapProps = {
export default function Wrap(props: WrapProps) {
return (
<div className={`max-w-[1632px] w-full px-4 mx-auto ${props.className}`}>
<div className={`max-w-[1232px] w-full px-4 mx-auto ${props.className}`}>
{props.children}
</div>
)