first commit

This commit is contained in:
liu
2026-07-13 15:23:29 +08:00
commit 50885a98c8
473 changed files with 33772 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import {Button, Card, Row, Col, Breadcrumb, Space} from "antd";
const First = () => (
<div>
<Card style={{ marginBottom: 16 }}>
<Breadcrumb items={[
{ title: '多级菜单' },
{ title: '二级页面' },
]} />
<h2 style={{ marginTop: 16, marginBottom: 0 }}></h2>
</Card>
<Row gutter={[16, 16]}>
<Col span={24}>
<Card style={{height: 200}} />
</Col>
<Col span={16}>
<Card style={{height: 200}} />
</Col>
<Col span={8}>
<Card style={{height: 200}} />
</Col>
</Row>
<Card style={{ marginTop: 16 }}>
<Space>
<Button></Button>
<Button type="primary"></Button>
</Space>
</Card>
</div>
);
export default First;
+33
View File
@@ -0,0 +1,33 @@
import {Button, Card, Row, Col, Breadcrumb, Space} from "antd";
const Second = () => (
<div>
<Card style={{ marginBottom: 16 }}>
<Breadcrumb items={[
{ title: '多级菜单' },
{ title: '二级菜单' },
{ title: '三级页面' },
]} />
<h2 style={{ marginTop: 16, marginBottom: 0 }}></h2>
</Card>
<Row gutter={[16, 16]}>
<Col span={24}>
<Card style={{height: 200}} />
</Col>
<Col span={16}>
<Card style={{height: 200}} />
</Col>
<Col span={8}>
<Card style={{height: 200}} />
</Col>
</Row>
<Card style={{ marginTop: 16 }}>
<Space>
<Button></Button>
<Button type="primary"></Button>
</Space>
</Card>
</div>
);
export default Second;
+34
View File
@@ -0,0 +1,34 @@
import {Button, Card, Row, Col, Breadcrumb, Space} from "antd";
const Third = () => (
<div>
<Card style={{ marginBottom: 16 }}>
<Breadcrumb items={[
{ title: '多级菜单' },
{ title: '二级菜单' },
{ title: '三级菜单' },
{ title: '四级页面' },
]} />
<h2 style={{ marginTop: 16, marginBottom: 0 }}></h2>
</Card>
<Row gutter={[16, 16]}>
<Col span={24}>
<Card style={{height: 200}} />
</Col>
<Col span={16}>
<Card style={{height: 200}} />
</Col>
<Col span={8}>
<Card style={{height: 200}} />
</Col>
</Row>
<Card style={{ marginTop: 16 }}>
<Space>
<Button></Button>
<Button type="primary"></Button>
</Space>
</Card>
</div>
);
export default Third;