3d98cf1e27
- Implemented CreateUserDrawer for adding new users with validation. - Added EditDrawer for editing existing user details. - Created InitialPasswordDialog to display generated passwords after user creation. - Developed ResetPasswordDialogs for resetting user passwords with copy functionality. - Enhanced user listing page with filtering, pagination, and role assignment capabilities. - Updated company picker import path to reflect new directory structure.
17 lines
551 B
TypeScript
17 lines
551 B
TypeScript
import { DashboardPlaceholder } from "@/components/dashboard-placeholder"
|
|
|
|
export default function DashboardHelpPage() {
|
|
return (
|
|
<DashboardPlaceholder
|
|
eyebrow="Help"
|
|
title="帮助中心骨架"
|
|
description="帮助中心用于沉淀产品说明、权限约定、渠道接入流程与常见问题。"
|
|
nextSteps={[
|
|
"汇总项目开发规范与后台使用说明。",
|
|
"补充第三方接入流程图和配置校验清单。",
|
|
"后续可接入 markdown 或文档中心能力。",
|
|
]}
|
|
/>
|
|
)
|
|
}
|