cqp 3 ماه پیش
والد
کامیت
63388f750b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      app/Service/EmployeeService.php

+ 1 - 1
app/Service/EmployeeService.php

@@ -315,7 +315,7 @@ class EmployeeService extends Service
         if(! empty($data['is_admin'])){
         if(! empty($data['is_admin'])){
             if(empty($data['password'])) return [false, '密码不能为空'];
             if(empty($data['password'])) return [false, '密码不能为空'];
             if(mb_strlen($data['password']) < 6) return [false, '密码长度不得小于6位长度'];
             if(mb_strlen($data['password']) < 6) return [false, '密码长度不得小于6位长度'];
-            if(! empty($data['role'])) return [false, '角色不能为空'];
+            if(empty($data['role'])) return [false, '角色不能为空'];
         }
         }
         $data['top_depart_id'] = $user['top_depart_id'];
         $data['top_depart_id'] = $user['top_depart_id'];