From be127bab7670863e27b75c2d5e53a85a7dd726d0 Mon Sep 17 00:00:00 2001 From: sky121113 Date: Wed, 20 May 2026 11:52:14 +0800 Subject: [PATCH] =?UTF-8?q?[FIX]=20=E4=BF=AE=E5=BE=A9=E8=A1=8C=E5=8B=95?= =?UTF-8?q?=E7=AB=AF=E6=99=82=E9=96=93=E7=AF=A9=E9=81=B8=E5=99=A8=E5=BC=B7?= =?UTF-8?q?=E5=88=B6=E8=BD=89=E7=82=BA=2012=20=E5=B0=8F=E6=99=82=E5=88=B6?= =?UTF-8?q?=E7=9A=84=E5=95=8F=E9=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 修正取貨碼使用紀錄篩選器 (tab-logs.blade.php):為 Flatpickr 開始/結束時間初始化配置補上 disableMobile: true,避免手機系統 12 小時制覆蓋。 2. 修正遠端指令歷史紀錄篩選器 (tab-history-index.blade.php):為 Flatpickr 起迄時間初始化配置補上 disableMobile: true,防止行動端原生選擇器轉換。 3. 修正遠端庫存操作紀錄篩選器 (tab-history.blade.php):為 Flatpickr 起迄時間初始化配置補上 disableMobile: true,確保與電腦版一致維持 24 小時制顯示。 --- .../views/admin/remote/partials/tab-history-index.blade.php | 2 ++ resources/views/admin/remote/partials/tab-history.blade.php | 2 ++ .../views/admin/sales/pickup-codes/partials/tab-logs.blade.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/resources/views/admin/remote/partials/tab-history-index.blade.php b/resources/views/admin/remote/partials/tab-history-index.blade.php index 3d6931b..14feca0 100644 --- a/resources/views/admin/remote/partials/tab-history-index.blade.php +++ b/resources/views/admin/remote/partials/tab-history-index.blade.php @@ -48,6 +48,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, locale: 'zh_tw', defaultDate: $el.value })" @@ -69,6 +70,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, locale: 'zh_tw', defaultDate: $el.value, position: 'auto right' diff --git a/resources/views/admin/remote/partials/tab-history.blade.php b/resources/views/admin/remote/partials/tab-history.blade.php index 22e9731..519ba2d 100644 --- a/resources/views/admin/remote/partials/tab-history.blade.php +++ b/resources/views/admin/remote/partials/tab-history.blade.php @@ -30,6 +30,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, defaultHour: 0, defaultMinute: 0, locale: 'zh_tw', @@ -54,6 +55,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, defaultHour: 23, defaultMinute: 59, locale: 'zh_tw', diff --git a/resources/views/admin/sales/pickup-codes/partials/tab-logs.blade.php b/resources/views/admin/sales/pickup-codes/partials/tab-logs.blade.php index 2946524..2153cb2 100644 --- a/resources/views/admin/sales/pickup-codes/partials/tab-logs.blade.php +++ b/resources/views/admin/sales/pickup-codes/partials/tab-logs.blade.php @@ -24,6 +24,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, defaultHour: 0, defaultMinute: 0, locale: 'zh_tw', @@ -46,6 +47,7 @@ dateFormat: 'Y-m-d H:i', enableTime: true, time_24hr: true, + disableMobile: true, defaultHour: 23, defaultMinute: 59, locale: 'zh_tw',