From 4908ebf4b580df958698cd85faacbbd4563ed319 Mon Sep 17 00:00:00 2001 From: taiyi Date: Tue, 14 Jul 2026 23:11:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E5=AE=A1=E6=89=B9=E8=AF=A6=E6=83=85=E9=A1=B5=E5=89=AA?= =?UTF-8?q?=E5=88=87=E6=9D=BF=E5=A4=8D=E5=88=B6=E5=A4=B1=E8=B4=A5=E5=90=8E?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=8D=A1=E5=9C=A8=E5=8A=A0=E8=BD=BD=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/manager/approve-detail/approve-detail.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/mini-app/pages/manager/approve-detail/approve-detail.js b/frontend/mini-app/pages/manager/approve-detail/approve-detail.js index 4cbd02b..94c7d2c 100644 --- a/frontend/mini-app/pages/manager/approve-detail/approve-detail.js +++ b/frontend/mini-app/pages/manager/approve-detail/approve-detail.js @@ -204,7 +204,7 @@ Page({ if (rebate > 0) feeItems.push({ label: "回扣", value: fmt(rebate) }); if (freight > 0) feeItems.push({ label: "运费", value: fmt(freight) }); if (tax > 0) feeItems.push({ label: "税费", value: fmt(tax) }); - if (commission > 0) feeItems.push({ label: "佣金", value: fmt(commission) }); + // if (commission > 0) feeItems.push({ label: "佣金", value: fmt(commission) }); var otherFee = Number(data.other_fee_total || 0); if (otherFee > 0) feeItems.push({ label: "其他费用", value: fmt(otherFee) }); feeItems.push({ label: "利润", value: fmt(profit), isProfit: true }); @@ -433,6 +433,11 @@ Page({ data: clipboardText, success: function () { wx.showToast({ title: "内容已复制到剪贴板", icon: "none", duration: 2000 }); + }, + fail: function () { + wx.showToast({ title: "复制失败,请手动复制", icon: "none", duration: 2000 }); + }, + complete: function () { that.loadDetail(); }, });