System Status: Operational
快速构建企业级管理系统
Next.js 16
React 19
PostgreSQL
Prisma
TypeScript
Tailwind CSS
Ant Design
Zod
Vercel
Docker
Git
ESLint
Next.js 16
React 19
PostgreSQL
Prisma
TypeScript
Tailwind CSS
Ant Design
Zod
Vercel
Docker
Git
ESLint
少写代码,多做实事
停止编写重复的样板代码。定义数据模型,让框架自动处理 UI、验证和数据库操作。
smart-crud.js
~70 lines
1// NextJS Base - Just Configuration
2const fieldsConfig = [
3 {
4 key: 'basic-group',
5 title: 'Basic Information',
6 type: 'group',
7 columns: [
8 {
9 key: 'title',
10 title: 'Title',
11 type: 'text',
12 form: { required: true },
13 search: { enabled: true },
14 },
15 {
16 key: 'status',
17 title: 'Status',
18 type: 'select',
19 data: statusOptions,
20 search: { enabled: true },
21 },
22 ],
23 },
24 {
25 key: 'media-group',
26 title: 'Media Files',
27 type: 'group',
28 columns: [
29 { key: 'coverImage', title: 'Cover', type: 'image' },
30 { key: 'gallery', title: 'Gallery', type: 'images', form: { max: 6 } },
31 ],
32 },
33];
34
35export default function Page() {
36 return (
37 <SmartCrudPage
38 fieldsConfig={fieldsConfig}
39 actions={actions}
40 enableCreate
41 enableEdit
42 enableDelete
43 />
44 );
45}✨ 90% Less Code
你需要的一切
一个完整的工具包,用于构建现代、可扩展和安全的管理应用程序。
极速开发
1-3 分钟完成 CRUD 页面开发,而非 4-8 小时。
极简代码
100-200 行配置代码代替 1000 行样板代码。
内置 RBAC
开箱即用的安全权限管理系统。
智能表单
基于字段配置自动生成表单。
操作日志
自动记录用户操作和数据变更。
现代技术栈
Next.js 16, Prisma, PostgreSQL, Ant Design 5, Better Auth。
