diff --git a/app/modules/dispatch/store.py b/app/modules/dispatch/store.py index 61f3d85..f959076 100644 --- a/app/modules/dispatch/store.py +++ b/app/modules/dispatch/store.py @@ -264,7 +264,8 @@ def courier_logo_url(provider: Any) -> str: # 매핑 없는 배송사는 링크 없이 텍스트로 표시(courier_tracking_url 가 "" 반환). _COURIER_TRACK_URL: dict[str, str] = { "ninjavan": "https://www.ninjavan.co/en-my/tracking?id={t}", - "jnt": "https://www.jtexpress.my/index/query/gzquery.html?bills={t}", + # J&T MY 공식 딥링크는 송장 자동입력이 안 돼 17TRACK 으로(범용, #nums 자동조회). + "jnt": "https://t.17track.net/en#nums={t}", "flash": "https://www.flashexpress.my/fle/tracking?se={t}", "citylink": "https://www.citylinkexpress.com/tracking-result/?track_no={t}", "poslaju": "https://track.pos.com.my/postal-services/quick-access/?track-trace&trackingNo03={t}", diff --git a/app/modules/dispatch/templates/dispatch/detail.html b/app/modules/dispatch/templates/dispatch/detail.html index 2cb32bf..9095b55 100644 --- a/app/modules/dispatch/templates/dispatch/detail.html +++ b/app/modules/dispatch/templates/dispatch/detail.html @@ -14,7 +14,7 @@ .dsp-meta { font-size:13px;line-height:1.5;color:#334155;word-break:break-all; } .dsp-meta b { color:#0f172a; } .dsp-order { font-size:15px;line-height:1.3;color:#334155;word-break:break-all; } - .dsp-order b { display:block;font-size:11px;font-weight:600;color:#64748b;letter-spacing:.5px; } + .dsp-order b { display:block;font-size:14px;font-weight:700;color:#475569;letter-spacing:.5px; } .dsp-order span { font-size:27px;font-weight:800;color:#0f172a;letter-spacing:.2px; } .dsp-track-link { color:#2563eb;font-weight:700;text-decoration:underline; text-decoration-thickness:2px;text-underline-offset:3px;cursor:pointer; }