From 7f589b4aa6a86e1aa5d853af3a405a25639ee0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9D=99?= Date: Sat, 11 Oct 2025 22:50:17 +0800 Subject: [PATCH] fix --- app/Http/Controllers/DeviceController.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/Http/Controllers/DeviceController.php b/app/Http/Controllers/DeviceController.php index 59ce875..6f6781e 100644 --- a/app/Http/Controllers/DeviceController.php +++ b/app/Http/Controllers/DeviceController.php @@ -139,14 +139,14 @@ class DeviceController extends Controller } $data = [ - 1 => [0, 148, 21, 0] - 2 => [0, 20, 3, 0] - 3 => [0, 10, 2, 0] - 4 => [0, 8, 3, 0] - 5 => [0, 4, 1, 0] - 6 => [0, 4, 0, 0] - 7 => [0, 0, 0, 0] - ] + 1 => [0, 148, 21, 0], + 2 => [0, 20, 3, 0], + 3 => [0, 10, 2, 0], + 4 => [0, 8, 3, 0], + 5 => [0, 4, 1, 0], + 6 => [0, 4, 0, 0], + 7 => [0, 0, 0, 0], + ]; return $this->json($data); }