|
|
@@ -79,7 +79,6 @@ class User extends Api
|
|
|
->where('a.user_id', $this->auth->id)
|
|
|
->order('a.id DESC')
|
|
|
->paginate($this->pageSize);
|
|
|
-
|
|
|
$this->success('', $list);
|
|
|
}
|
|
|
|
|
|
@@ -95,7 +94,6 @@ class User extends Api
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
$list['data'] = $userBalanceLog::where('user_id', $this->auth->id)
|
|
|
- ->where('type_id', $userBalanceLog::Share)
|
|
|
->order('id desc')
|
|
|
->paginate($this->pageSize);
|
|
|
$list['statusList'] = $userBalanceLog::getStatusList();
|
|
|
@@ -106,7 +104,6 @@ class User extends Api
|
|
|
Db::rollback();
|
|
|
$this->error($e->getMessage());
|
|
|
}
|
|
|
-
|
|
|
$this->success('', $list);
|
|
|
}
|
|
|
|