|
|
@ -31,6 +31,7 @@ let amount=0,userid,txflag=0,imei |
|
|
|
console.log(`\n=====开始用户:${userid} 每次刷满5000====`) |
|
|
|
await updateInfo(userid) |
|
|
|
await $.wait(200) |
|
|
|
|
|
|
|
if (amount>3000){ |
|
|
|
|
|
|
|
console.log(`开始抽奖卷`) |
|
|
@ -41,7 +42,7 @@ let amount=0,userid,txflag=0,imei |
|
|
|
//break
|
|
|
|
} |
|
|
|
console.log(`等待3分钟开始查看提现记录`) |
|
|
|
await $.wait(30000) |
|
|
|
await $.wait(100000) |
|
|
|
for (userid of dtsignArr){ |
|
|
|
console.log(`\n=========${userid}========`) |
|
|
|
await Check(userid) |
|
|
@ -130,12 +131,13 @@ async function updateInfo(userid) { |
|
|
|
if(!result) return |
|
|
|
//console.log(`${JSON.stringify(result)}`)
|
|
|
|
if(result.code == 0) { |
|
|
|
imei=result.imei |
|
|
|
console.log(`imei:${result.imei} `); |
|
|
|
let tel = "" + result.alipayaccount; |
|
|
|
var newTel = tel.substr(0,3) + "****" + tel.substr(7) |
|
|
|
imei=result.imei||'' |
|
|
|
console.log(`imei:${imei} `); |
|
|
|
let tel = result.alipayaccount||''; |
|
|
|
tel=''+tel |
|
|
|
if (tel)var newTel = tel.substr(0,3) + "****" + tel.substr(7) |
|
|
|
let aliname=result.alipayname |
|
|
|
var newname=aliname.substr(0,1)+'**'+aliname.substr(2) |
|
|
|
if (aliname)var newname=aliname.substr(0,1)+'**'+aliname.substr(2) |
|
|
|
amount=result.redcoupons |
|
|
|
console.log(`绑定:${newTel}-${newname} 答题次数:${result.answernum} 金币数:${amount}`); |
|
|
|
}else console.log(`${JSON.stringify(result)}`) |
|
|
|