From 66c8df89d86ed574f19a89ac766205a8b9016a82 Mon Sep 17 00:00:00 2001 From: whitechiina <1293616053@qq.com> Date: Fri, 18 Apr 2025 09:46:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shop_home/components/shop-cart/shop-cart.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages/restaurant/home/shop_home/components/shop-cart/shop-cart.vue b/pages/restaurant/home/shop_home/components/shop-cart/shop-cart.vue index 5fd7814..f355ae3 100644 --- a/pages/restaurant/home/shop_home/components/shop-cart/shop-cart.vue +++ b/pages/restaurant/home/shop_home/components/shop-cart/shop-cart.vue @@ -14,7 +14,7 @@ - {{_fixed(totalPrice)}} + {{__amount(totalPrice)}} @@ -45,7 +45,7 @@ - {{_fixed(item['adj_pay'] * item['num'])}} + {{__amount(item['adj_pay'] * item['num'])}} @@ -181,7 +181,7 @@ - {{totalPrice}} + {{__amount(totalPrice)}} @@ -218,8 +218,8 @@ - {{(item.pay_price * item.num)}} - {{(item.adj_pay * item.num)}} + {{(__amount(item.pay_price * item.num))}} + {{(__amount(item.adj_pay * item.num))}} @@ -261,7 +261,7 @@ - {{totalPrice}} + {{__amount(totalPrice)}} @@ -349,7 +349,7 @@ - {{totalPrice}} + {{__amount(totalPrice)}}