订单更为成功
This commit is contained in:
parent
3e7676879b
commit
d4e717201b
|
@ -87,7 +87,37 @@ const req = (method, url, params, responseType) => {
|
||||||
|
|
||||||
let http = fetch(url, obj).then(res =>{
|
let http = fetch(url, obj).then(res =>{
|
||||||
window.timeshow=res.headers.get('Date-Time');
|
window.timeshow=res.headers.get('Date-Time');
|
||||||
|
console.log(res);
|
||||||
|
if(res.status==200){
|
||||||
return res.json()
|
return res.json()
|
||||||
|
}else{
|
||||||
|
switch (res.status) {
|
||||||
|
// 401: 未登录
|
||||||
|
case 401:
|
||||||
|
Notify.clear();
|
||||||
|
Notify.error( "当前信息过期请重新登录");
|
||||||
|
setTimeout(() => {
|
||||||
|
window.location.href='./login';
|
||||||
|
}, 3000)
|
||||||
|
break;
|
||||||
|
case 417:
|
||||||
|
Notify.clear();
|
||||||
|
Notify.error( res.statusText);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 500:
|
||||||
|
Notify.clear();
|
||||||
|
Notify.error( res.statusText);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
Notify.clear();
|
||||||
|
Notify.error( res.statusText);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(res);
|
||||||
|
|
||||||
} );
|
} );
|
||||||
return http.then(response =>response).catch(error => console.error('Error:', error));
|
return http.then(response =>response).catch(error => console.error('Error:', error));
|
||||||
}
|
}
|
||||||
|
|
|
@ -562,7 +562,7 @@ componentDidUpdate(prevProps,prevState){
|
||||||
// rowData.status==3? <span className="grid-link" onClick={(e)=>this.againinvestFn(e,rowData)}>再次充值</span>:null
|
// rowData.status==3? <span className="grid-link" onClick={(e)=>this.againinvestFn(e,rowData)}>再次充值</span>:null
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
rowData.status==1? <span className="grid-link" onClick={(e)=>this.deleteFn(e,rowData)} >改为成功</span>:null
|
rowData.status==1? <span className="grid-link" onClick={(e)=>this.changeSuccessFn(e,rowData)} >改为成功</span>:null
|
||||||
}
|
}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue