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.上楼费暂不收取,收费另行通知。 +
+ {/* 支付方式选择 */}