From 186565f7bbc56542a9a763189836bb74db012b26 Mon Sep 17 00:00:00 2001 From: terrylee Date: Thu, 16 Jul 2026 15:15:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(app-ui):=20=E5=95=9F=E7=94=A8=E9=83=A8?= =?UTF-8?q?=E4=BD=8D=20B1/B4(=E6=B5=AE=E5=8B=95=E9=88=95=20icon)=20+=20M1~?= =?UTF-8?q?M5(=E5=90=84=E6=94=AF=E4=BB=98=E7=A4=BA=E6=84=8F=E5=9C=96)=20+?= =?UTF-8?q?=20icon/payment=5Fillust=20=E7=BE=A4=E7=B5=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 皆 crop=false 保留原比例;B 系列建議 128x128,M 系列不限尺寸 Co-Authored-By: Claude Opus 4.8 (1M context) --- config/ui_parts.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/config/ui_parts.php b/config/ui_parts.php index cf5cd4f..6240b49 100644 --- a/config/ui_parts.php +++ b/config/ui_parts.php @@ -26,6 +26,8 @@ return [ 'transaction' => '交易結果(E 系列)', 'payment' => '支付方式(P 系列)', 'background' => '整頁背景', + 'icon' => '浮動鈕 Icon(B 系列)', + 'payment_illust' => '支付示意圖(M 系列)', 'bgcolor' => '背景色(C 系列)', 'textcolor' => '文字色(T 系列)', ], @@ -50,6 +52,17 @@ return [ // === 整頁背景(image,滿版裁切)=== 'BG0' => ['label' => 'BG0 - 整頁背景(待機/銷售頁)', 'group' => 'background', 'type' => 'image', 'width' => 1080, 'height' => 1920, 'active' => true], + // === B 系列:浮動鈕 Icon(image,不裁切保留原比例)=== + 'B1' => ['label' => 'B1 - 取貨碼浮動鈕', 'group' => 'icon', 'type' => 'image', 'width' => 128, 'height' => 128, 'crop' => false, 'active' => true], + 'B4' => ['label' => 'B4 - 購物車浮動鈕', 'group' => 'icon', 'type' => 'image', 'width' => 128, 'height' => 128, 'crop' => false, 'active' => true], + + // === M 系列:各支付「進行中」畫面的支付方式示意圖(image,不裁切保留原比例)=== + 'M1' => ['label' => 'M1 - 信用卡支付示意圖', 'group' => 'payment_illust', 'type' => 'image', 'width' => null, 'height' => null, 'crop' => false, 'active' => true], + 'M2' => ['label' => 'M2 - 手機支付示意圖', 'group' => 'payment_illust', 'type' => 'image', 'width' => null, 'height' => null, 'crop' => false, 'active' => true], + 'M3' => ['label' => 'M3 - 掃碼支付示意圖', 'group' => 'payment_illust', 'type' => 'image', 'width' => null, 'height' => null, 'crop' => false, 'active' => true], + 'M4' => ['label' => 'M4 - 卡片/電子票證示意圖', 'group' => 'payment_illust', 'type' => 'image', 'width' => null, 'height' => null, 'crop' => false, 'active' => true], + 'M5' => ['label' => 'M5 - 現金支付示意圖', 'group' => 'payment_illust', 'type' => 'image', 'width' => null, 'height' => null, 'crop' => false, 'active' => true], + // === C 系列:背景色(color)=== 'C0' => ['label' => 'C0 - 機台資訊列底色', 'group' => 'bgcolor', 'type' => 'color', 'active' => true],