Commit fe24f116db029121aad15e1e0524b63b9d38f118
1 parent
b47b702e
plus卡的优化
Showing
1 changed file
with
5 additions
and
2 deletions
packageE/pages/user/cardinfo/cardinfo.js
... | ... | @@ -846,8 +846,11 @@ Page({ |
846 | 846 | th.data.paying=0; |
847 | 847 | getApp().my_warnning("支付失败", 0, th); |
848 | 848 | },function (ordno){ |
849 | - console.log('get_order') | |
850 | - console.log(ordno) | |
849 | + if(ordno.indexOf('_')){ | |
850 | + var str_arr=ordno.split('_'); | |
851 | + ordno=str_arr[0]; | |
852 | + } | |
853 | + | |
851 | 854 | th.data.ok_order_sn=ordno; |
852 | 855 | }); |
853 | 856 | ... | ... |