Commit 5ef482ed authored by xiaohu's avatar xiaohu

1.add step-form layout

2.add routes redirect
parent 2378eb05
......@@ -3,6 +3,7 @@
// https://umijs.org/config/
const path = require('path');
const pageRoutes = require('../src/pages/_routes');
export default {
// add for transfer to umi
......@@ -13,6 +14,9 @@ export default {
'umi-plugin-routes',
{
exclude: [/\.test\.js/],
update(routes) {
return [...pageRoutes, ...routes];
},
},
],
],
......
......@@ -194,6 +194,7 @@
import { isUrl } from '../utils/utils';
// TODO: authority
const menuData = [
{
name: 'dashboard',
......@@ -211,6 +212,7 @@ const menuData = [
{
name: '工作台',
path: 'Workplace',
// hideInBreadcrumb: true,
// hideInMenu: true,
},
],
......@@ -226,11 +228,11 @@ const menuData = [
},
{
name: '分步表单',
path: 'StepForm/Step1',
path: 'StepForm',
},
{
name: '高级表单',
authority: 'admin',
// authority: 'admin',
path: 'AdvancedForm',
},
],
......@@ -246,7 +248,7 @@ const menuData = [
},
{
name: '标准列表',
path: 'BasicList',
path: 'basicList',
},
{
name: '卡片列表',
......@@ -279,11 +281,11 @@ const menuData = [
children: [
{
name: '基础详情页',
path: 'BasicProfile',
path: 'Basic',
},
{
name: '高级详情页',
path: 'AdvancedProfile',
path: 'Advanced',
authority: 'admin',
},
],
......@@ -299,7 +301,7 @@ const menuData = [
},
{
name: '失败',
path: 'Error',
path: 'Fail',
},
],
},
......@@ -347,6 +349,21 @@ const menuData = [
},
],
},
{
name: '个人页',
icon: 'user',
path: 'Account',
children: [
{
name: '个人中心',
path: 'Center',
},
{
name: '个人设置',
path: 'Settings',
},
],
},
];
function formatter(data, parentPath = '/', parentAuthority) {
......
......@@ -25,7 +25,7 @@ export default {
type: 'saveStepFormData',
payload,
});
yield put(routerRedux.push('/form/step-form/result'));
yield put(routerRedux.push('/Forms/StepForm/Step3'));
},
*submitAdvancedForm({ payload }, { call }) {
yield call(fakeSubmitForm, payload);
......
......@@ -27,7 +27,7 @@ class Step1 extends React.PureComponent {
type: 'form/saveStepFormData',
payload: values,
});
dispatch(routerRedux.push('/form/step-form/confirm'));
dispatch(routerRedux.push('/Forms/StepForm/Step2'));
}
});
};
......
......@@ -20,7 +20,7 @@ class Step2 extends React.PureComponent {
const { form, data, dispatch, submitting } = this.props;
const { getFieldDecorator, validateFields } = form;
const onPrev = () => {
dispatch(routerRedux.push('/form/step-form'));
dispatch(routerRedux.push('/Forms/StepForm'));
};
const onValidateForm = e => {
e.preventDefault();
......
......@@ -9,7 +9,7 @@ class Step3 extends React.PureComponent {
render() {
const { dispatch, data } = this.props;
const onFinish = () => {
dispatch(routerRedux.push('/form/step-form'));
dispatch(routerRedux.push('/Forms/StepForm'));
};
const information = (
<div className={styles.information}>
......
import React, { PureComponent, Fragment } from 'react';
import { Route, Redirect, Switch } from 'dva/router';
import { Card, Steps } from 'antd';
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
import { getRoutes } from '../../../utils/utils';
import styles from '../style.less';
// import { Route, Redirect, Switch } from 'dva/router';
// import { getRoutes } from '../../../utils/utils';
const { Step } = Steps;
export default class StepForm extends PureComponent {
......@@ -13,11 +14,11 @@ export default class StepForm extends PureComponent {
const { pathname } = location;
const pathList = pathname.split('/');
switch (pathList[pathList.length - 1]) {
case 'info':
case 'Step1':
return 0;
case 'confirm':
case 'Step2':
return 1;
case 'result':
case 'Step3':
return 2;
default:
return 0;
......@@ -25,7 +26,7 @@ export default class StepForm extends PureComponent {
}
render() {
const { match, routerData, location } = this.props;
const { location, children } = this.props;
return (
<PageHeaderLayout
title="分步表单"
......@@ -39,7 +40,8 @@ export default class StepForm extends PureComponent {
<Step title="确认转账信息" />
<Step title="完成" />
</Steps>
<Switch>
{children}
{/* <Switch>
{getRoutes(match.path, routerData).map(item => (
<Route
key={item.key}
......@@ -50,7 +52,7 @@ export default class StepForm extends PureComponent {
))}
<Redirect exact from="/form/step-form" to="/form/step-form/info" />
<Redirect to="/exception/404" />
</Switch>
</Switch> */}
</Fragment>
</Card>
</PageHeaderLayout>
......
[
{
"path": "/Dashboard",
"exact": true,
"redirect": "/Dashboard/Analysis"
},
{
"path": "/Forms",
"exact": true,
"redirect": "/Forms/BasicForm"
},
{
"path": "/Forms/StepForm",
"exact": true,
"redirect": "/Forms/StepForm/Step1"
},
{
"path": "/List",
"exact": true,
"redirect": "/List/TableList"
},
{
"path": "/List/Search",
"exact": true,
"redirect": "/List/Search/Articles"
},
{
"path": "/Profile",
"exact": true,
"redirect": "/Profile/BasicProfile"
},
{
"path": "/Result",
"exact": true,
"redirect": "/Result/Success"
},
{
"path": "/Exception",
"exact": true,
"redirect": "/Exception/403"
}
]
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment