From c7dca284ce3890ba80721b7437dd3b4a667c0d28 Mon Sep 17 00:00:00 2001 From: linbin <495561397@qq.com> Date: Sun, 26 Oct 2025 04:01:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=BC=E8=BF=B0:=20=E9=87=8D=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E8=AE=A2=E5=8D=95=E5=A4=87=E8=B4=A7=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E6=96=87=E4=BB=B6=EF=BC=8C=E4=BC=98=E5=8C=96=E5=95=86=E5=AE=B6?= =?UTF-8?q?=E7=AB=AF=E8=AE=A2=E5=8D=95=E7=AE=A1=E7=90=86=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=20-=20=E5=B0=86=20`shop-order-prepare.html`=20=E9=87=8D?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E4=B8=BA=20`=E8=AE=A2=E5=8D=95=E5=A4=87?= =?UTF-8?q?=E8=B4=A7.html`=EF=BC=8C=E6=8F=90=E5=8D=87=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E8=A7=84=E8=8C=83=E6=80=A7=20-=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E8=B7=B3=E8=BD=AC=E9=93=BE=E6=8E=A5=EF=BC=8C?= =?UTF-8?q?=E7=A1=AE=E4=BF=9D=E5=8A=9F=E8=83=BD=E6=AD=A3=E5=B8=B8=E8=BF=90?= =?UTF-8?q?=E8=A1=8C=20-=20=E6=9B=B4=E6=96=B0=E5=A4=A7=E5=A6=88=E9=9B=86?= =?UTF-8?q?=E5=B8=82.rp=E5=8E=9F=E5=9E=8B=E6=96=87=E4=BB=B6=E5=86=85?= =?UTF-8?q?=E5=AE=B9=EF=BC=8C=E5=8F=8D=E6=98=A0=E6=9C=80=E6=96=B0=E7=9A=84?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=BB=93=E6=9E=84=E5=8F=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../工作台/订单列表/shop-order-list.html | 2 +- .../{shop-order-prepare.html => 订单备货.html} | 112 ++++++++++++++++-- 大妈集市.rp | Bin 24347275 -> 24415671 bytes 3 files changed, 106 insertions(+), 8 deletions(-) rename 商家端APP/工作台/订单列表/{shop-order-prepare.html => 订单备货.html} (83%) diff --git a/商家端APP/工作台/订单列表/shop-order-list.html b/商家端APP/工作台/订单列表/shop-order-list.html index 42e28aa..a29174f 100644 --- a/商家端APP/工作台/订单列表/shop-order-list.html +++ b/商家端APP/工作台/订单列表/shop-order-list.html @@ -534,7 +534,7 @@ if (orderNo && daySn && startTime) { // 跳转到备货清单页面,并传递参数 - window.location.href = `shop-order-prepare.html?orderNo=${orderNo}&daySn=${daySn}&startTime=${encodeURIComponent(startTime)}`; + window.location.href = `订单备货.html?orderNo=${orderNo}&daySn=${daySn}&startTime=${encodeURIComponent(startTime)}`; } }); }); diff --git a/商家端APP/工作台/订单列表/shop-order-prepare.html b/商家端APP/工作台/订单列表/订单备货.html similarity index 83% rename from 商家端APP/工作台/订单列表/shop-order-prepare.html rename to 商家端APP/工作台/订单列表/订单备货.html index 0f5f6e5..a3acaf9 100644 --- a/商家端APP/工作台/订单列表/shop-order-prepare.html +++ b/商家端APP/工作台/订单列表/订单备货.html @@ -311,6 +311,71 @@ .toast.show { display: block; } + + /* 退差价相关样式 */ + .refund-section { + margin: 20px 0; + } + + .refund-checkbox { + display: flex; + align-items: center; + gap: 8px; + font-size: 14px; + color: #333; + margin-bottom: 12px; + } + + .refund-checkbox input[type="checkbox"] { + width: 18px; + height: 18px; + cursor: pointer; + } + + .refund-items { + display: none; + max-height: 200px; + overflow-y: auto; + padding: 10px; + background-color: #f9f9f9; + border-radius: 6px; + } + + .refund-items.show { + display: block; + } + + .refund-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 8px 0; + gap: 12px; + } + + .refund-item-name { + flex: 1; + font-size: 14px; + color: #333; + } + + .refund-item-input { + flex: 0 0 100px; + } + + .refund-item-input input { + width: 100%; + padding: 6px 8px; + border: 1px solid #ddd; + border-radius: 4px; + font-size: 14px; + text-align: right; + } + + .refund-item-input input:focus { + outline: none; + border-color: #09542B; + } @@ -428,8 +493,36 @@