|
|
@@ -205,7 +205,7 @@ function normalizeCouponItem(item) {
|
|
|
const raw = item;
|
|
|
const couponType = Number(raw.couponType) || 0;
|
|
|
const nominalValue = Number(raw.nominalValue ?? raw.amount ?? 0) || 0;
|
|
|
- const discountRate = Number(raw.discountRate) || 0;
|
|
|
+ const discountRate = ((Number(raw.discountRate) || 0) / 10) || 0;
|
|
|
const minAmount = Number(raw.minimumSpendingAmount ?? raw.minAmount ?? raw.min_amount ?? 0) || 0;
|
|
|
const isReceived = raw.canReceived === false;
|
|
|
let amountDisplay = nominalValue + '元';
|