Kirin 2 years ago
parent
commit
8b2e270f8c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/api/controller/user/UserLevelController.php

+ 1 - 1
app/api/controller/user/UserLevelController.php

@@ -51,7 +51,7 @@ class UserLevelController
      */
     public function pay_grade(Request $request)
     {
-        return app('json')->successful(SystemUserLevel::where('is_show','0')->where('is_del',0)->select()->toarray());
+        return app('json')->successful(SystemUserLevel::where('is_show',1)->where('is_del',0)->select()->toarray());
     }
 
 }