diff --git a/app/statistics/controller/IndexController.php b/app/statistics/controller/IndexController.php index cc804aa1d..269e9288f 100644 --- a/app/statistics/controller/IndexController.php +++ b/app/statistics/controller/IndexController.php @@ -135,7 +135,7 @@ class IndexController extends BaseLikeController // if (ProductLogic::hasError()) { // return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息 // } - $res = Db::connect('demo')->name('user_recharge')->where($where)->whereTime('create_time', $time)->select()->each(function ($item) { + $res = Db::connect('demo')->name('user_recharge')->where($where)->select()->each(function ($item) { if ($item['uid']) { $item['nickname'] = User::where('id', $item['uid'])->value('nickname'); } else { @@ -151,7 +151,7 @@ class IndexController extends BaseLikeController { $time = $this->request->get('date'); $store_id = $this->request->get('store_id', 0); - $where = ['paid','=',1]; + $where['paid'] = 1; if ($store_id) { $where['store_id'] = $store_id; }