31 lines
832 B
TypeScript
31 lines
832 B
TypeScript
import React from "react";
|
|
import { NavBar } from "antd-mobile";
|
|
import Layout from "@/components/Layout/Layout";
|
|
import MeauMobile from "@/components/MeauMobile/MeauMoible";
|
|
|
|
const WechatAccountDetail: React.FC = () => {
|
|
return (
|
|
<Layout
|
|
header={
|
|
<NavBar
|
|
backArrow
|
|
style={{ background: "#fff" }}
|
|
onBack={() => window.history.back()}
|
|
>
|
|
<div style={{ color: "var(--primary-color)", fontWeight: 600 }}>
|
|
微信号详情
|
|
</div>
|
|
</NavBar>
|
|
}
|
|
footer={<MeauMobile />}
|
|
>
|
|
<div style={{ padding: 20, textAlign: "center", color: "#666" }}>
|
|
<h3>微信号详情页面</h3>
|
|
<p>此页面正在开发中...</p>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default WechatAccountDetail;
|