更新推送信息

This commit is contained in:
yaooo 2023-08-16 16:41:54 +08:00
parent 3ae85db230
commit e6d3e45905
2 changed files with 7 additions and 6 deletions

View File

@ -84,9 +84,10 @@ class JgPush
break;
}
$this->addRegistrationId($jgRegisterId);
$this->androidNotification('您有新的订单,请注意查看。', ['extras' => ['route' => $route, 'type' =>'ORDER_CREATE']]);
$this->iosNotification('您有新的订单,请注意查看。', ['extras' => ['route' => $route, 'type' =>'ORDER_CREATE']]);
$this->androidNotification('您有新的订单,请注意查看111。', ['extras' => ['route' => $route, 'type' =>'ORDER_CREATE']]);
$this->iosNotification('您有新的订单,请注意查看111。', ['extras' => ['route' => $route, 'type' =>'ORDER_CREATE']]);
$this->push->send();
Log::info("ORDER_CREATE ============= 您有新的订单111请注意查看。");
break;
case 'ORDER_PAY_SUCCESS':
$order = app()->make(StoreOrderRepository::class)->get($data['id']);
@ -100,10 +101,10 @@ class JgPush
break;
}
$this->addRegistrationId($jgRegisterId);
$this->androidNotification('您有新的订单,请注意查看。', ['extras' => ['route' => $route, 'type' =>'ORDER_PAY_SUCCESS']]);
$this->iosNotification('您有新的订单,请注意查看。', ['extras' => ['route' => $route, 'type' =>'ORDER_PAY_SUCCESS']]);
$this->androidNotification('您有新的订单,请注意查看222。', ['extras' => ['route' => $route, 'type' =>'ORDER_PAY_SUCCESS']]);
$this->iosNotification('您有新的订单,请注意查看222。', ['extras' => ['route' => $route, 'type' =>'ORDER_PAY_SUCCESS']]);
$this->push->send();
Log::info("ORDER_CREATE ============= 您有新的订单,请注意查看。");
Log::info("ORDER_PAY_SUCCESS ============= 您有新的订单222,请注意查看。");
break;
default:
break;

View File

@ -31,7 +31,7 @@ class SendSmsJob implements JobInterface
if (!$status) {
$job->delete();
}
Log::info('app fire数据:' . $status);
Log::info('app推送数据:' . $status);
if ($status['notice_app'] == 1) {
try {
/** @var JgPush $client */