Commit 636e111f by fukai

Merge branch 'master' of http://172.17.2.110:11080/fukai/dzt-mobx

parents 71d1e83b 2923c3d3
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectTasksOptions" suppressed-tasks="Less" />
</project>
\ No newline at end of file
export default fieldSet = {
branch: [{type: 'string', required: true, max: 20, message: '长度不能超过20个字符'}],
opndat: [{type: 'object', required: true, message: '请选择交易日期'}],
ownref: [{type: 'string', required: true, max: 32, message: '长度不能超过32个字符'}],
extkey: [{type: 'string', max: 20}],
cusman: [{type: 'string', max: 20}],
cpman: [{type: 'string', max: 20}],
custyp: [{type: 'string', max: 20}],
cuspr: [{type: 'string', max: 20}],
fudref: [{type: 'string', max: 20}],
cusseg: [{type: 'string', max: 20}],
ptynam: [{type: 'string', max: 20}],
attdat: [{type: 'string', max: 20}],
attrsn: [{type: 'string', max: 20}],
fxtyp: [{type: 'string', max: 20}],
actcs: [{type: 'string', max: 20}],
rattyp: [{type: 'string', max: 20}],
ratref: [{type: 'string', max: 20}],
rat: [{type: 'string', max: 20}],
livrat: [{type: 'string', max: 20}],
pripon: [{type: 'string', max: 20}],
max: [{type: 'string', max: 20}],
amt: [{type: 'string', max: 20}],
acc: [{type: 'string', max: 20}],
cortyp: [{type: 'string', max: 20}],
acc2: [{type: 'string', max: 20}],
cortyp2: [{type: 'string', max: 20}],
sumcod: [{type: 'string', max: 20}],
}
\ No newline at end of file
import React,{Component} from 'react'
import { Switch, Route, Redirect } from 'react-router-dom';
import Fetopn from './Fetopn'
import "./index.less"
const moduleBasePath = "/business/fet/"
export default function moduleRouter(props){
return <React.Fragment>
<Switch>
<Route exact path={`${moduleBasePath}opn`} component={Fetopn} />
</Switch>
</React.Fragment>
}
\ No newline at end of file
...@@ -12,6 +12,7 @@ import './index.less' ...@@ -12,6 +12,7 @@ import './index.less'
import Home from '../Home' import Home from '../Home'
import PXIRouter from '../Business/PXI' import PXIRouter from '../Business/PXI'
import FETRouter from '../Business/FET'
const { const {
Header, Footer, Sider, Content, Header, Footer, Sider, Content,
...@@ -41,6 +42,7 @@ export default class LayoutCom extends Component { ...@@ -41,6 +42,7 @@ export default class LayoutCom extends Component {
<Route path="/home" component={Home} /> <Route path="/home" component={Home} />
{/*模块路由插入开始*/} {/*模块路由插入开始*/}
<Route path="/business/pxi" component={PXIRouter} /> <Route path="/business/pxi" component={PXIRouter} />
<Route path="/business/fet" component={FETRouter} />
{/*模块路由插入结束*/} {/*模块路由插入结束*/}
<Redirect path="/" to="/home" /> <Redirect path="/" to="/home" />
</Switch> </Switch>
......
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