Commit ac1e91ad by 王昆

gsb

parent 83b55159
...@@ -577,7 +577,15 @@ class BpoSDPJApi { ...@@ -577,7 +577,15 @@ class BpoSDPJApi {
if (item.tradeStatus == "00" || item.tradeStatus == "02" || item.tradeStatus == "03") { if (item.tradeStatus == "00" || item.tradeStatus == "02" || item.tradeStatus == "03") {
// 1 认证页面 2 二维码已失效 3 红包领取页面 4 红包领取结果页面(心跳查询) 5 红包已被领取 // 1 认证页面 2 二维码已失效 3 红包领取页面 4 红包领取结果页面(心跳查询) 5 红包已被领取
let rc = item.tradeStatus == "00" ? 4 : 6; let rc = item.tradeStatus == "00" ? 4 : 6;
return this.getBaseResult(0, cashInfo.trade_desc, { let trade_desc;
if(item.tradeStatus == "00") {
rc = 4;
trade_desc = "领取成功";
} else {
rc = 6;
trade_desc = "领取失败";
}
return this.getBaseResult(0, trade_desc, {
redirect_code: rc, redirect_code: rc,
trade_desc: cashInfo.trade_desc, trade_desc: cashInfo.trade_desc,
complete: true, complete: true,
......
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