WIN-2308041133\Administrator 15 hours ago
parent
commit
c8bbbde7c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/system/controller/Member.php

+ 2 - 2
app/system/controller/Member.php

@@ -312,13 +312,13 @@ class Member extends BaseController
             return app('json')->fail('用户不存在,请输入正确的用户uid');
         }
         if ($post['type'] == 1)
-            $bool = (new UserScoreDetailModel)->adminAddMoney($userData['uid'], intval($post['into']),  $request->adminInfo['id'],$post['othen']);
+            $bool = (new UserScoreDetailModel)->adminAddMoney($userData['uid'], intval($post['into']),  $request->adminInfo['id']);
 
         if ($post['type'] == -1){
             if($userData["score"]-$post['into']<0){
                 return app('json')->fail('剩余积分不足');
             }
-            $bool = (new UserScoreDetailModel)->adminCutMoney($userData['uid'], intval($post['into']),  $request->adminInfo['id'],$post['othen']);
+            $bool = (new UserScoreDetailModel)->adminCutMoney($userData['uid'], intval($post['into']),  $request->adminInfo['id']);
         }