Ver código fonte

后台钻石/余额列表调整

zhangxiaobin 1 ano atrás
pai
commit
42e4511f8b

+ 1 - 1
application/admin/controller/user/User.php

@@ -364,7 +364,7 @@ class User extends Backend
                     $userWhere['id'] = $row['id'];
                     $userWhere['id'] = $row['id'];
                     $user = Db::name('user')->where($userWhere)->lock(true)->find();
                     $user = Db::name('user')->where($userWhere)->lock(true)->find();
                     $before = isset($user['jewel']) ? $user['jewel'] : 0;
                     $before = isset($user['jewel']) ? $user['jewel'] : 0;
-                    $jewelRes = model('Wallet')->lockChangeAccountRemain($row['id'],$params['jewel_add'],'+',$before,$remark='钻石充值()',17,'jewel');
+                    $jewelRes = model('Wallet')->lockChangeAccountRemain($row['id'],$params['jewel_add'],'+',$before,'钻石充值',17,'jewel');
                     if (!$jewelRes['status']) {
                     if (!$jewelRes['status']) {
                         throw new Exception($jewelRes['msg']);
                         throw new Exception($jewelRes['msg']);
                     }
                     }

+ 11 - 1
application/admin/model/UserJewelLog.php

@@ -30,7 +30,17 @@ class UserJewelLog extends Model
     
     
     public function getTypeList()
     public function getTypeList()
     {
     {
-        return config('wallet.logtype');
+        $logType = config('wallet.logtype');
+        $typeResult = [];
+        if (!empty($logType)) {
+            foreach ($logType as $key => $value) {
+                if ($key > 100) {
+                    continue;
+                }
+                $typeResult[$key] = $value;
+            }
+        }
+        return $typeResult;
     }
     }
 
 
     public function getTypeTextAttr($value, $data)
     public function getTypeTextAttr($value, $data)

+ 11 - 1
application/admin/model/UserMoneyLog.php

@@ -30,7 +30,17 @@ class UserMoneyLog extends Model
 
 
     public function getTypeList()
     public function getTypeList()
     {
     {
-        return config('wallet.logtype');
+        $logType = config('wallet.logtype');
+        $typeResult = [];
+        if (!empty($logType)) {
+            foreach ($logType as $key => $value) {
+                if ($key < 101) {
+                    continue;
+                }
+                $typeResult[$key] = $value;
+            }
+        }
+        return $typeResult;
     }
     }
 
 
     public function getTypeTextAttr($value, $data)
     public function getTypeTextAttr($value, $data)