|
@@ -285,19 +285,12 @@ export default class Layout extends React.Component {
|
|
|
// Object.assign(, this.state.Params_w, this.state.Params_S),
|
|
|
}
|
|
|
}
|
|
|
- let contactName = JSON.parse(odata).contactName;
|
|
|
- let legalPersonName = JSON.parse(wdata).legalPersonName;
|
|
|
- let accountName = JSON.parse(sdata).accountName;
|
|
|
- if(contactName == legalPersonName && contactName == accountName){
|
|
|
- $Axios('get', url, params, (res) => {
|
|
|
- let data = res.data;
|
|
|
- let status = res.data.head.status;
|
|
|
- that_.countDownTK(status,data)
|
|
|
- that_.setState({lodings : false});
|
|
|
- })
|
|
|
- }else{
|
|
|
- that_.messageTK('联系人姓名需与法人姓名和开户名称一致!')
|
|
|
- }
|
|
|
+ $Axios('get', url, params, (res) => {
|
|
|
+ let data = res.data;
|
|
|
+ let status = res.data.head.status;
|
|
|
+ that_.countDownTK(status,data)
|
|
|
+ that_.setState({lodings : false});
|
|
|
+ })
|
|
|
|
|
|
}
|
|
|
|