|
@@ -91,7 +91,7 @@ class UserFinance extends ApiBaseController
|
|
|
$pm = $this->request->param('pm', '');
|
|
|
$start_time = $this->request->param('start_time', '');
|
|
|
$end_time = $this->request->param('end_time', '');
|
|
|
- $data = $this->billServices->getUserBillList($category, ['uid' => $this->request->uid(), 'pm' => $pm, 'start_time' => $start_time, 'end_time' => $end_time], '*');
|
|
|
+ $data = $this->billServices->getBillList($category, ['uid' => $this->request->uid(), 'pm' => $pm, 'start_time' => $start_time, 'end_time' => $end_time], '*');
|
|
|
$all_income = $this->billServices->getUserBillSum($this->request->uid(), $category, '', 1);
|
|
|
$all_expend = $this->billServices->getUserBillSum($this->request->uid(), $category, '', 0);
|
|
|
$types = $this->billServices->getBillType($category);
|