import React from "react"; import { NavBar, Button } from "antd-mobile"; import { PlusOutlined } from "@ant-design/icons"; import Layout from "@/components/Layout/Layout"; import MeauMobile from "@/components/MeauMobile/MeauMoible"; interface PlaceholderPageProps { title: string; showBack?: boolean; showAddButton?: boolean; addButtonText?: string; showFooter?: boolean; } const PlaceholderPage: React.FC = ({ title, showBack = true, showAddButton = false, addButtonText = "新建", showFooter = true, }) => { return ( window.history.back() : undefined} left={
{title}
} right={ showAddButton ? ( ) : undefined } /> } footer={showFooter ? : undefined} >

{title}页面

此页面正在开发中...

); }; export default PlaceholderPage;