wupengfei 3 years ago
parent
commit
719c5544e1
2 changed files with 7 additions and 2 deletions
  1. 6 1
      application/admin/model/User.php
  2. 1 1
      application/common/model/Attachment.php

+ 6 - 1
application/admin/model/User.php

@@ -56,11 +56,16 @@ class User extends Model
             if (isset($changedata['score']) && (int) $changedata['score'] !== (int) $origin['score']) {
                 ScoreLog::create(['user_id' => $row['id'], 'score' => $changedata['score'] - $origin['score'], 'before' => $origin['score'], 'after' => $changedata['score'], 'memo' => '管理员变更积分']);
             }
-
+            // 调整身份
            if(isset($changedata['level']) && $changedata['level'] != $origin['level']) {
                 LmtUserLevelLog::createLevelLog($origin['id'],$changedata['level'],4,'后台调整');
                 $row->level_update = time();
             }
+           // 调整代理
+            if(isset($changedata['rank']) && $changedata['rank'] != $origin['rank'] )
+            {
+
+            }
 
            if(isset($changedata['quota_num']) && $changedata['quota_num'] != $origin['quota_num'] ) {
                 $quota =[

+ 1 - 1
application/common/model/Attachment.php

@@ -29,7 +29,7 @@ class Attachment extends Model
         });
         self::beforeWrite(function ($row) {
             if (isset($row['category']) && $row['category'] == 'unclassed') {
-                $row['category'] = '';
+                //$row['category'] = '';
             }
         });
     }