This commit is contained in:
2026-04-04 18:09:09 +08:00
parent 46bbce84aa
commit 3b8c991e1a
6 changed files with 98 additions and 29 deletions

View File

@ -21,7 +21,7 @@
<view class="flex-row-between" style="margin-top: 20rpx">
<view class="">
<text class="app-fc-mark fs-28"></text>
<text class="app-fc-mark fs-28">{{picList[0].actual_price || 0 }}</text>
<text class="app-fc-mark fs-28">{{picList[0].actual_price / 100 || 0 }}</text>
<!-- <text class="fs-24 origin-price">
¥{{ minPrice.price_shichang || 0 }}
</text> -->
@ -410,7 +410,7 @@
number,
goods_name: this.details.goods_name,
price_name: priceInfo?.price_name,
goods_price: +(+priceInfo?.actual_price * number).toFixed(2),
goods_price: +((priceInfo?.actual_price / 100) * number).toFixed(2),
}, ],
});
},