Commit c512be66 by yuemanxilou8

增加FETOPN界面

parent c2c337c0
<?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
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