Commit 47a0a007 authored by 李尚科's avatar 李尚科

fix

parent 8cd4bfd2
Pipeline #14071 passed with stage
in 5 seconds
......@@ -55,12 +55,12 @@ class HomeService extends Service {
let blacklist = retList[0].worth_h;
let callrisk = retList[1].worth_h;
for (let i in blacklist) {
if (blacklist[i].state === '待支付') {
if (['待支付', '支付中'].includes(blacklist[i].state)) {
bePayOrder.push(blacklist[i]);
}
}
for (let i in callrisk) {
if (callrisk[i].state === '待支付') {
if (['待支付', '支付中'].includes(callrisk[i].state)) {
bePayOrder.push(callrisk[i]);
}
}
......
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