feat(admin): batch node-machine binding & frontend update

This commit is contained in:
xboard
2026-04-18 19:37:52 +08:00
parent 1603359120
commit bdd7820a69
3 changed files with 26 additions and 1 deletions
@@ -226,6 +226,7 @@ class ManageController extends Controller
'ids.*' => 'integer',
'show' => 'nullable|integer|in:0,1',
'enabled' => 'nullable|boolean',
'machine_id' => 'nullable|integer',
]);
$ids = $params['ids'];
@@ -240,6 +241,9 @@ class ManageController extends Controller
if (array_key_exists('enabled', $params) && $params['enabled'] !== null) {
$update['enabled'] = (bool) $params['enabled'];
}
if (array_key_exists('machine_id', $params)) {
$update['machine_id'] = $params['machine_id'] ?: null;
}
if (empty($update)) {
return $this->fail([400, '没有可更新的字段']);