|
|
@@ -33,7 +33,8 @@ class NoticeClass extends BaseClass
|
|
|
}
|
|
|
$adminId = $admin['id'] ?? 0;
|
|
|
//APP通知
|
|
|
- pushNotice::push($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
|
|
|
+ //pushNotice::push($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
|
|
|
+ pushNotice::gtPush($adminId, $clientId, '新订单通知', $customName . '下单' . $actPrice . '元');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -53,7 +54,8 @@ class NoticeClass extends BaseClass
|
|
|
continue;
|
|
|
}
|
|
|
$adminId = $admin['id'] ?? 0;
|
|
|
- pushNotice::push($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
|
|
|
+ //pushNotice::push($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
|
|
|
+ pushNotice::gtPush($adminId, $clientId, '提现到账通知', $amount . '元已到账,请查收');
|
|
|
}
|
|
|
}
|
|
|
|