init: 毛孩子计划 小程序 + Go 后端 + 内嵌后台

- pets-fe: 微信原生小程序(首页/计划/记录/报告/社区/引导),
  服务端驱动、无假数据;弹层改用 scroll-view,打开时隐藏自定义 tabBar
- pets-be: Gin + GORM(MySQL, sundynix_ 前缀) + MinIO,统一响应/分页,
  微信 code2session 登录,provider-neutral AI(DeepSeek),go:embed React 后台
- 修复:分段选择类型不匹配(字符串 vs 数字)导致选不中

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Blizzard
2026-07-03 15:33:31 +08:00
commit 609f7d06cf
180 changed files with 15259 additions and 0 deletions
@@ -0,0 +1,59 @@
import { NavLink, Outlet, useNavigate } from 'react-router-dom'
import { LayoutDashboard, Users, PawPrint, MessageSquare, MessagesSquare, FileText, Crown, LogOut } from 'lucide-react'
import { clearToken } from '@/lib/api'
import { cn } from '@/lib/utils'
import { Button } from '@/components/ui/button'
const nav = [
{ to: '/', label: '概览', icon: LayoutDashboard, end: true },
{ to: '/users', label: '用户管理', icon: Users },
{ to: '/pets', label: '宠物管理', icon: PawPrint },
{ to: '/posts', label: '帖子审核', icon: MessageSquare },
{ to: '/comments', label: '评论管理', icon: MessagesSquare },
{ to: '/articles', label: '文章管理', icon: FileText },
{ to: '/members', label: '会员管理', icon: Crown },
]
export default function Layout() {
const navigate = useNavigate()
function logout() {
clearToken()
navigate('/login')
}
return (
<div className="flex min-h-screen">
<aside className="w-56 shrink-0 border-r bg-card p-4 flex flex-col">
<div className="flex items-center gap-2 px-2 py-3 mb-4">
<span className="text-2xl">🐾</span>
<span className="font-bold"></span>
</div>
<nav className="flex flex-col gap-1">
{nav.map((n) => (
<NavLink
key={n.to}
to={n.to}
end={n.end}
className={({ isActive }) =>
cn(
'flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors',
isActive ? 'bg-primary/15 text-primary' : 'text-muted-foreground hover:bg-accent',
)
}
>
<n.icon className="h-4 w-4" />
{n.label}
</NavLink>
))}
</nav>
<div className="mt-auto">
<Button variant="ghost" className="w-full justify-start text-muted-foreground" onClick={logout}>
<LogOut className="h-4 w-4" /> 退
</Button>
</div>
</aside>
<main className="flex-1 p-8 overflow-auto">
<Outlet />
</main>
</div>
)
}