Skip to content

Commit

Permalink
修复东东超市 因目前京东数据异常导致队伍pk后不自动领取蓝币的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lxk0301 committed Jan 19, 2021
1 parent b5c785d commit 64a6901
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion USER_AGENTS.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const USER_AGENTS = [
"jdapp;iPhone;9.2.2;14.2;%E4%BA%AC%E4%B8%9C/9.2.2 CFNetwork/1206 Darwin/20.1.0",
"jdapp;iPhone;9.2.2;14.2;%E4%BA%AC%E4%B8%9C/9.2.2 CFNetwork/1206 Darwin/20.1.0",
"jdapp;android;9.3.5;10;2346663656561603-4353564623932316;network/wifi;model/ONEPLUS A5010;addressid/138709979;aid/2dfceea045ed292a;oaid/;osVer/29;appBuild/86390;partner/jingdong;eufv/1;Mozilla/5.0 (Linux; Android 10; ONEPLUS A5010 Build/QKQ1.191014.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045230 Mobile Safari/537.36",
"jdapp;iPhone;9.3.4;14.3;88732f840b77821b345bf07fd71f609e6ff12f43;network/4g;ADID/1C141FDD-C62F-425B-8033-9AAB7E4AE6A3;supportApplePay/0;hasUPPay/0;hasOCPay/0;model/iPhone11,8;addressid/2005183373;supportBestPay/0;appBuild/167502;jdSupportDarkMode/0;pv/414.19;apprpd/Babel_Native;ref/TTTChannelViewContoller;psq/5;ads/;psn/88732f840b77821b345bf07fd71f609e6ff12f43|1701;jdv/0|iosapp|t_335139774|appshare|CopyURL|1610885480412|1610885486;adk/;app_device/IOS;pap/JA2015_311210|9.3.4|IOS 14.3;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1",
]
Expand Down
27 changes: 22 additions & 5 deletions jd_superMarket.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,12 +370,9 @@ async function businessCircleActivity() {
}
if (pkStatus === 1) {
console.log(`商圈PK进行中\n`)
} else if (pkStatus === 2) {
console.log(`商圈PK结束了`)
if (prizeInfo.pkPrizeStatus === 2) {
console.log(`开始领取商圈PK奖励`);
if (!teamId) {
const receivedPkTeamPrize = await smtg_receivedPkTeamPrize();
console.log(`商圈PK奖励领取结果:${JSON.stringify(receivedPkTeamPrize)}`)
console.log(`商圈PK奖励领取结果:${JSON.stringify(receivedPkTeamPrize)}\n`)
if (receivedPkTeamPrize.data.bizCode === 0) {
if (receivedPkTeamPrize.data.result.pkResult === 1) {
const { pkTeamPrizeInfoVO } = receivedPkTeamPrize.data.result;
Expand All @@ -389,6 +386,26 @@ async function businessCircleActivity() {
}
}
}
}
} else if (pkStatus === 2) {
console.log(`商圈PK结束了`)
if (prizeInfo.pkPrizeStatus === 2) {
console.log(`开始领取商圈PK奖励`);
// const receivedPkTeamPrize = await smtg_receivedPkTeamPrize();
// console.log(`商圈PK奖励领取结果:${JSON.stringify(receivedPkTeamPrize)}`)
// if (receivedPkTeamPrize.data.bizCode === 0) {
// if (receivedPkTeamPrize.data.result.pkResult === 1) {
// const { pkTeamPrizeInfoVO } = receivedPkTeamPrize.data.result;
// message += `【商圈PK奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功\n`;
// if ($.isNode()) {
// await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK获胜\n【奖励】${pkTeamPrizeInfoVO.blueCoin}蓝币领取成功`)
// }
// } else if (receivedPkTeamPrize.data.result.pkResult === 2) {
// if ($.isNode()) {
// await notify.sendNotify(`${$.name} - 账号${$.index} - ${$.nickName}`, `【京东账号${$.index}】 ${$.nickName}\n【商圈队伍】PK失败`)
// }
// }
// }
} else if (prizeInfo.pkPrizeStatus === 1) {
console.log(`商圈PK奖励已经领取\n`)
}
Expand Down

0 comments on commit 64a6901

Please sign in to comment.