|
|
@@ -183,11 +183,10 @@ function checkPlanCBuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
let lotteryCount = pksPlanItemData.lotteryCount;
|
|
|
// 开奖号码
|
|
|
let preDrawCode = pksPlanItemData.preDrawCode;
|
|
|
- if(preDrawCode.length > 0){
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
turnOneCost = Math.floor(lotteryCostC/3);
|
|
|
+ // 期数
|
|
|
+ let preDrawIssue = String(pksPlanItemData.preDrawIssue);
|
|
|
// 开奖时间
|
|
|
let preDrawTime = pksPlanItemData.preDrawTime;
|
|
|
// 倒计时秒数
|
|
|
@@ -199,7 +198,13 @@ function checkPlanCBuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
// 累计成本
|
|
|
let lotteryCostAllC = pksPlanItemData.lotteryCostAllC;
|
|
|
|
|
|
- magicJS.notification.appendNotifyInfo(`[C]推荐号码:${planC} 单注额:${turnOneCost} 开奖时间:${preDrawTime} 剩余时间:${countTime}s`);
|
|
|
+ let tipsMsg = `[C]期号:${preDrawIssue} 推荐号码:${planC} 单注:${turnOneCost} \n开奖时间:${preDrawTime} 剩余时间:${countTime}s`;
|
|
|
+ magicJS.logger.info(tipsMsg);
|
|
|
+
|
|
|
+ if(preDrawCode.length > 0){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ magicJS.notification.appendNotifyInfo(tipsMsg);
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
@@ -222,11 +227,10 @@ function checkPlanBBuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
let lotteryCount = pksPlanItemData.lotteryCount;
|
|
|
// 开奖号码
|
|
|
let preDrawCode = pksPlanItemData.preDrawCode;
|
|
|
- if(preDrawCode.length > 0){
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
turnOneCost = Math.floor(lotteryCostB/4);
|
|
|
+ // 期数
|
|
|
+ let preDrawIssue = String(pksPlanItemData.preDrawIssue);
|
|
|
// 开奖时间
|
|
|
let preDrawTime = pksPlanItemData.preDrawTime;
|
|
|
// 倒计时秒数
|
|
|
@@ -237,8 +241,14 @@ function checkPlanBBuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
let profitB = pksPlanItemData.profitB;
|
|
|
// 累计成本
|
|
|
let lotteryCostAllB = pksPlanItemData.lotteryCostAllB;
|
|
|
+
|
|
|
+ let tipsMsg = `[B]期号:${preDrawIssue} 推荐号码:${planB} 单注额:${turnOneCost} \n开奖时间:${preDrawTime} 剩余时间:${countTime}s`;
|
|
|
+ magicJS.logger.info(tipsMsg);
|
|
|
|
|
|
- magicJS.notification.appendNotifyInfo(`[B]推荐号码:${planB} 单注额:${turnOneCost} 开奖时间:${preDrawTime} 剩余时间:${countTime}s`);
|
|
|
+ if(preDrawCode.length > 0){
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ magicJS.notification.appendNotifyInfo(tipsMsg);
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
@@ -261,11 +271,10 @@ function checkPlanABuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
let lotteryCount = pksPlanItemData.lotteryCount;
|
|
|
// 开奖号码
|
|
|
let preDrawCode = pksPlanItemData.preDrawCode;
|
|
|
- if(preDrawCode.length > 0){
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
turnOneCost = Math.floor(lotteryCostA/5);
|
|
|
+ // 期数
|
|
|
+ let preDrawIssue = String(pksPlanItemData.preDrawIssue);
|
|
|
// 开奖时间
|
|
|
let preDrawTime = pksPlanItemData.preDrawTime;
|
|
|
// 倒计时秒数
|
|
|
@@ -276,8 +285,15 @@ function checkPlanABuyNotify(pksPlanItemData, pksPlanListData){
|
|
|
let profitA = pksPlanItemData.profitA;
|
|
|
// 累计成本
|
|
|
let lotteryCostAllC = pksPlanItemData.lotteryCostAllC;
|
|
|
+
|
|
|
+ let tipsMsg = `[B]期号:${preDrawIssue} 推荐号码:${planA} 单注额:${turnOneCost} 开奖时间:${preDrawTime} 剩余时间:${countTime}s`;
|
|
|
+ magicJS.logger.info(tipsMsg);
|
|
|
+
|
|
|
+ if(preDrawCode.length > 0){
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- magicJS.notification.appendNotifyInfo(`[A]推荐号码:${planA} 单注额:${turnOneCost} 开奖时间:${preDrawTime} 剩余时间:${countTime}s`);
|
|
|
+ magicJS.notification.appendNotifyInfo(tipsMsg);
|
|
|
return true;
|
|
|
}
|
|
|
|