diff --git a/.gitignore b/.gitignore index e017f9b8..d7e961df 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ .vscode .DS_Store .umi +*.swp dist run diff --git a/app/web/config/router.config.js b/app/web/config/router.config.js index 81fd7987..3c2d537d 100644 --- a/app/web/config/router.config.js +++ b/app/web/config/router.config.js @@ -28,7 +28,7 @@ export default [ { path: '/dashboard/analysis', name: 'collect', - // component: './Dashboard/Analysis', + component: './helloworld', }, { path: '/dashboard/monitor', diff --git a/app/web/src/pages/helloworld.js b/app/web/src/pages/helloworld.js index 7a158170..24e6acc3 100644 --- a/app/web/src/pages/helloworld.js +++ b/app/web/src/pages/helloworld.js @@ -1,20 +1,34 @@ import {Component} from 'react'; import {Card} from 'antd'; +import { Steps } from 'antd'; +import {LoadingOutlined} from '@ant-design/icons'; + +const { Step } = Steps; class Helloworld extends Component { render() { - return ( - - } - title="Alipay" - description="在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的组件会被抽离成一套标准规范。" - /> - + return ( +
+ + } + title="Alipay" + description="在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的组件会被抽离成一套标准规范。" + /> + + + + + } description="This is a description." /> + + + + +
); } }