|
|
@@ -51,10 +51,7 @@ class OrderController extends webApp
|
|
|
{
|
|
|
$status = request()->post('status', 1);
|
|
|
$data = OrderService::make()->getCountByStatus($this->userId, $status);
|
|
|
- return showJson(1010, true, [
|
|
|
- 'count'=>$data,
|
|
|
- 'social_open'=>ConfigService::make()->getConfigByCode('social_open',0)
|
|
|
- ]);
|
|
|
+ return showJson(1010, true, $data);
|
|
|
}
|
|
|
|
|
|
|