-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
668 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
|
||
```shell | ||
git commit --no-verify -m "commit" | ||
|
||
|
||
推荐使用rmdir 命令,批量删除大量文件时比del 更高效快速。 | ||
``` | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.drawer { | ||
border: 1px dashed #e8e8e8; | ||
padding: 16px; | ||
text-align: center; | ||
margin-top: 10px; | ||
} | ||
|
||
.box { | ||
border: 1px solid #e8e8e8; | ||
padding: 16px; | ||
width: 80px; | ||
text-align: center; | ||
margin-right: 16px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React from 'react'; | ||
import { Card, Space } from 'antd'; | ||
import { PageContainer } from '@ant-design/pro-layout'; | ||
|
||
import Login from './login'; | ||
|
||
import Sample from './sample'; | ||
import SampleEx from './sampleEx'; | ||
import SampleGroup from './sampleGroup'; | ||
import StepForm from './stepForm'; | ||
|
||
export default () => { | ||
return ( | ||
<PageContainer subTitle="高级表单相关例子"> | ||
<Card title="模拟登录" style={{ marginBottom: 16 }}> | ||
<Login /> | ||
</Card> | ||
|
||
<Card title="基本表单" style={{ marginBottom: 16 }}> | ||
<Sample /> | ||
</Card> | ||
|
||
<Card title="基本表单-扩展" style={{ marginBottom: 16 }}> | ||
<SampleEx /> | ||
</Card> | ||
|
||
<Card title="基本表单-分组样式" style={{ marginBottom: 16 }}> | ||
<SampleGroup /> | ||
</Card> | ||
|
||
<Card title="分布式表单" style={{ marginBottom: 16 }}> | ||
<StepForm /> | ||
</Card> | ||
</PageContainer> | ||
); | ||
}; |
Oops, something went wrong.