zhangguidong 2 年之前
父节点
当前提交
3006f5c053
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      application/api/controller/UserMoney.php

+ 0 - 1
application/api/controller/UserMoney.php

@@ -57,7 +57,6 @@ class UserMoney extends Api
         $type = input('type', 1);
         $page = input('page', 1);
         $limit = input('limit');
-
         $money_log_model = new UserMoneyLog();
         $list = $money_log_model->where(['user_id' => $this->auth->id, 'type' => $type])->order('id', 'desc')->paginate($limit, false, ['page' => $page]);
         $this->success('余额明细记录', $list);