liaofei 2 лет назад
Родитель
Сommit
1ba94cb77c
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      crmeb/app/adminapi/controller/v1/setting/SystemCrud.php

+ 2 - 2
crmeb/app/adminapi/controller/v1/setting/SystemCrud.php

@@ -238,8 +238,8 @@ class SystemCrud extends AuthController
         ]);
 
         $data = [];
-        foreach ($make as $item) {
-            if (in_array($item['path'], ['pages', 'router', 'api'])) {
+        foreach ($make as $key => $item) {
+            if (in_array($key, ['pages', 'router', 'api'])) {
                 $path = Make::adminTemplatePath() . $item['path'];
             } else {
                 $path = app()->getRootPath() . $item['path'];