no message

This commit is contained in:
kuaifan
2021-07-07 16:25:54 +08:00
parent c56c6c72ae
commit fb48a52aa5
27 changed files with 9198 additions and 24 deletions

View File

@@ -63,7 +63,10 @@ class FileController extends AbstractController
});
})->get();
if ($list->isNotEmpty()) {
$array = array_merge($array, $list->toArray());
foreach ($list as $item) {
$item->pid = 0;
$array[] = $item->toArray();
}
}
}
return Base::retSuccess('success', $array);