Authored by OF1706

问题

... ... @@ -392,9 +392,9 @@ const formatPromotion = (it, selectedGiftsList) => {
let tipTxt = `差${ -Math.round(info.conditionValue * 100) / 100}`;
if (info.conditionUnit === 1) {
tipTxt += '件 ';
tipTxt += '件满足 ';
} else if (info.conditionUnit === 2) {
tipTxt += '元 ';
tipTxt += '元满足 ';
}
info.promotionTitle = tipTxt + info.promotionTitle;
... ...
... ... @@ -54,7 +54,7 @@
<li>{{promotionTitle}}
{{>mix/cart/cart-promotion-btn}}
{{#if isNotReach}}
<a class="btn-clear blue order-pay-link" target="_blank" href="{{promotionPageUrl}}">去凑单&nbsp;></a>
<a class="btn-clear blue order-pay-link" target="_blank" href="{{promotionPageUrl}}">去凑单&nbsp;</a>
{{/if}}
</li>
{{/promotionInfos}}
... ...
... ... @@ -76,15 +76,15 @@
</div>
{{/if}}
{{#if promotionInfos}}
<div class="gift-sell">
{{#promotionInfos}}
<p class="gift-sell-info"><code class="order-pay-mark">{{tag}}</code>{{promotionTitle}}
<!--<a class="btn-clear blue" data-together-id="6">去凑单&nbsp;&gt;</a>-->
</p>
{{/promotionInfos}}
</div>
{{/if}}
<!--{{#if promotionInfos}}-->
<!--<div class="gift-sell">-->
<!--{{#promotionInfos}}-->
<!--<p class="gift-sell-info"><code class="order-pay-mark">{{tag}}</code>{{promotionTitle}}-->
<!--&lt;!&ndash;<a class="btn-clear blue" data-together-id="6">去凑单&nbsp;&gt;</a>&ndash;&gt;-->
<!--</p>-->
<!--{{/promotionInfos}}-->
<!--</div>-->
<!--{{/if}}-->
</div>
{{/advanceCart}}
... ... @@ -232,7 +232,7 @@
data-promotionid="{{promotionId}}"
data-num="{{productNum}}">
<span class="good-name" style="width: 392px;">
<a href="{{link}}" target="_blank">{{productTitle}}</a>
<a href="{{link}}" target="_blank" title="{{productTitle}}">{{productTitle}}</a>
</span>
<span class="good-price" style="width: 148px;">{{productPrice}}</span>
<span class="good-num" style="width: 128px;">{{productNum}}</span>
... ...
... ... @@ -193,6 +193,8 @@
dd {
width: 55px;
float: left;
letter-spacing: 0;
word-spacing: 0;
padding-bottom: 15px;
text-align: left;
}
... ...
... ... @@ -1334,6 +1334,9 @@
font-size: 14px;
color: #000;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.good-price {
font-size: 14px;
... ...