Commit 053994bc by wangshuo

拼团接口 成功码的处理

parent f5eaf58e
......@@ -153,7 +153,10 @@ class Order extends Component {
}
this.props.history.push(`/payorder?oid=${res.data.data.oid}`, {group: 1});
}else {
}else if(Number(res.data.errno) === 0){
Toast.info(res.data.data.msg, 2);
return;
} else {
Toast.info(res.data.msg, 2);
return;
}
......
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