diff --git a/app/api/lists/cate/CateLists.php b/app/api/lists/cate/CateLists.php index d8d5184af..3be5babd5 100644 --- a/app/api/lists/cate/CateLists.php +++ b/app/api/lists/cate/CateLists.php @@ -27,7 +27,7 @@ class CateLists extends BaseAdminDataLists implements ListsSearchInterface public function setSearch(): array { return [ - '=' => ['pid', 'name', 'data', 'store_id', 'sort'], + '=' => [ 'name', 'data', 'store_id', 'sort'], ]; } diff --git a/app/common/logic/PayNotifyLogic.php b/app/common/logic/PayNotifyLogic.php index 1566bd94a..5dbdc4903 100644 --- a/app/common/logic/PayNotifyLogic.php +++ b/app/common/logic/PayNotifyLogic.php @@ -78,6 +78,8 @@ class PayNotifyLogic extends BaseLogic $capitalFlowDao = new CapitalFlowLogic($user); $capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order['pay_price']); self::afterPay($order); + Redis::send('push-platform-print', ['id' => $order['id']], 60); + } /**