shish 4 years ago
parent
commit
522ebdcd50
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app-ghs/controllers/CustomLevelController.php

+ 2 - 2
app-ghs/controllers/CustomLevelController.php

@@ -39,11 +39,11 @@ class CustomLevelController extends BaseController
         }
         $byNum = $post['byNum'] ?? 0;
         if ($byNum <= $qtNum) {
-            util::fail('青铜等级的数量要大于白银');
+            util::fail('白银等级的数量要大于青铜');
         }
         $hjNum = $post['hjNum'] ?? 0;
         if ($hjNum <= $byNum) {
-            util::fail('白银等级的数量要大于黄金');
+            util::fail('黄金等级的数量要大于白银');
         }
         $zsNum = $post['zsNum'] ?? 0;
         if ($zsNum <= $hjNum) {