orderensure-guang-style
Showing
2 changed files
with
5 additions
and
2 deletions
@@ -59,7 +59,7 @@ | @@ -59,7 +59,7 @@ | ||
59 | .guang-nav { | 59 | .guang-nav { |
60 | background-color: #fff; | 60 | background-color: #fff; |
61 | overflow: hidden; | 61 | overflow: hidden; |
62 | - width: 100%; | 62 | + width: 640px; |
63 | height: 80px; | 63 | height: 80px; |
64 | display: flex; | 64 | display: flex; |
65 | justify-content: space-around; | 65 | justify-content: space-around; |
@@ -221,8 +221,11 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) { | @@ -221,8 +221,11 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) { | ||
221 | result.paymentWay = payway; | 221 | result.paymentWay = payway; |
222 | } | 222 | } |
223 | 223 | ||
224 | + // 是否是重新计算的 | ||
225 | + let isOrderComputer = orderComputeData && !_.isEmpty(orderComputeData); | ||
226 | + | ||
224 | // 有货币 | 227 | // 有货币 |
225 | - result.yohoCoinCompute = yohoCoinCompute(orderComputeData ? orderComputeData : data); | 228 | + result.yohoCoinCompute = yohoCoinCompute(isOrderComputer ? orderComputeData : data); |
226 | 229 | ||
227 | // 发票 | 230 | // 发票 |
228 | if (data.invoices) { | 231 | if (data.invoices) { |
-
Please register or login to post a comment