|
|
@@ -303,6 +303,15 @@ class TelegramWebHook extends Controller
|
|
|
$telegram->editMessageText($res);
|
|
|
}
|
|
|
|
|
|
+ //流水列表,下一页
|
|
|
+ $pattern = "/^FlowingHistoryPage@@\d+$/";
|
|
|
+ if (preg_match($pattern, $data)) {
|
|
|
+ $page = preg_replace('/^FlowingHistoryPage@@/', '', $data);
|
|
|
+ $page = intval($page);
|
|
|
+ $returnMsg = BalanceLogService::getFlowingHistory($chatId,$messageId,$page);
|
|
|
+ $telegram->editMessageText($res);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
//提现账单,下一页
|
|
|
$pattern = "/^withdrawBillNextPage@@\d+$/";
|
|
|
@@ -979,7 +988,7 @@ class TelegramWebHook extends Controller
|
|
|
$res = $topService->done($chatId);
|
|
|
$telegram->sendMessage($res);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
//充值账单,下一页
|
|
|
$pattern = "/^topUpBillNextPage@@\d+$/";
|
|
|
if (preg_match($pattern, $data)) {
|