fix: 滚动条主题适配 + 套餐 API 输入校验补全

- 滚动条默认浅色,data-theme="dark" 下切换深色
- admin layout / PayPageLayout 根 div 加 data-theme 属性
- 套餐 POST/PUT: name 类型、空值、长度(100)校验 + trim
- 套餐 PUT: 补全 sort_order 非负整数校验
This commit is contained in:
erio
2026-03-15 17:24:44 +08:00
parent a7089936a4
commit 58d4c7efbf
5 changed files with 48 additions and 10 deletions

View File

@@ -26,6 +26,7 @@ export default function PayPageLayout({
return (
<div
data-theme={isDark ? 'dark' : 'light'}
className={[
'relative w-full overflow-hidden',
isEmbedded ? 'min-h-screen p-2' : 'min-h-screen p-3 sm:p-4',