shawenguan 1 an în urmă
părinte
comite
482fe29a4a
1 a modificat fișierele cu 8 adăugiri și 3 ștergeri
  1. 8 3
      Scripts/mangguo/nenMoScript.js

+ 8 - 3
Scripts/mangguo/nenMoScript.js

@@ -339,7 +339,12 @@ async function checkAutoStartMonitorTask(configData) {
             if (retStart && retStart.code == 0) {
                 startedLst = startedLst.concat(willStartLst);
                 let resData = retStart.data;
-                let taskRetText = `启动监控任务结果概览:\n`;
+                let taskRetText = `账号监控任务启动账号数量:${willStartLst.length},相关账号如下:\n`;
+                for (let i = 0; i < willStartLst.length; i++) {
+                    let accountInfo = willStartLst[i];
+                    taskRetText += `账号[${accountInfo.xmAccount}]启动...\n`;
+                }
+                taskRetText += `账号监控任务启动结果概览:\n`;
                 taskRetText += `新增:${resData.addCount}\n`;
                 taskRetText += `关闭:${resData.closeCount}\n`;
                 taskRetText += `失败:${resData.failCount}\n`;
@@ -934,9 +939,9 @@ async function checkExistOrderNoPay() {
             let priceStr = `¥${d.amount}`;
             let payStatus = await doPayResultCheck(orderId);
             if (payStatus) {
-                msgTipsText += `账号[${xmAccount}](${alias})下单的${goodsStr}(${priceStr})已付款,无需处理\n`;
+                msgTipsText += `账号[${xmAccount}]${alias}下的订单:\n${goodsStr}(${priceStr})已付款,无需处理\n`;
             } else {
-                msgTipsText += `账号[${xmAccount}](${alias})下单的${goodsStr}(${priceStr})未付款,请尽快去付款!过期时间:${expireStr}\n`;
+                msgTipsText += `账号[${xmAccount}]${alias}下的订单:\n${goodsStr}(${priceStr})未付款,请尽快去付款!过期时间:${expireStr}\n`;
                 nopayCount += 1;
             }
         }