From 50ffd2c9da5290d5eb85a890ddc519547307df13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Sat, 7 Feb 2026 12:40:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(api):=20=E6=B7=BB=E5=8A=A0=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E5=95=86=E5=93=81ID=E6=9F=A5=E8=AF=A2=E6=B0=B4?= =?UTF-8?q?=E7=A5=A8=E6=A8=A1=E6=9D=BF=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 getGltTicketTemplateByGoodsId 函数用于查询水票模板 - 移除最低提现金额显示,保留手续费信息 - 隐藏订单确认页面中的配送范围设置区域 - 添加订单注意事项说明文本 --- src/api/glt/gltTicketTemplate/index.ts | 13 +++++++++++++ src/dealer/withdraw/index.tsx | 2 +- src/shop/orderConfirm/index.tsx | 9 ++++++++- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/api/glt/gltTicketTemplate/index.ts b/src/api/glt/gltTicketTemplate/index.ts index 3f3b380..f145300 100644 --- a/src/api/glt/gltTicketTemplate/index.ts +++ b/src/api/glt/gltTicketTemplate/index.ts @@ -103,3 +103,16 @@ export async function getGltTicketTemplate(id: number) { } return Promise.reject(new Error(res.message)); } + +/** + * 根据商品ID查询水票模板 + */ +export async function getGltTicketTemplateByGoodsId(id: number) { + const res = await request.get>( + '/glt/glt-ticket-template/getByGoodsId/' + id + ); + if (res.code === 0 && res.data) { + return res.data; + } + return Promise.reject(new Error(res.message)); +} diff --git a/src/dealer/withdraw/index.tsx b/src/dealer/withdraw/index.tsx index c6ce532..6b2cd40 100644 --- a/src/dealer/withdraw/index.tsx +++ b/src/dealer/withdraw/index.tsx @@ -394,7 +394,7 @@ const DealerWithdraw: React.FC = () => { borderTop: '1px solid rgba(255, 255, 255, 0.3)' }}> - 最低提现金额:¥100 | 手续费:免费 + 手续费:免费 diff --git a/src/shop/orderConfirm/index.tsx b/src/shop/orderConfirm/index.tsx index 9d97580..5544bd8 100644 --- a/src/shop/orderConfirm/index.tsx +++ b/src/shop/orderConfirm/index.tsx @@ -656,7 +656,7 @@ const OrderConfirm = () => { )} - + @@ -789,6 +789,13 @@ const OrderConfirm = () => { )}/> +
+ 注意事项: + 1.最低起送量≥20桶; + 2.配送范围要在电子围栏内; + 3.上楼费暂不收取,收费另行通知。 +
+ {/* 支付方式选择 */}