Authored by htoooth

fix css

@@ -207,7 +207,7 @@ const _getBundleAsync = (result) => { @@ -207,7 +207,7 @@ const _getBundleAsync = (result) => {
207 count: _.get(result, 'data.bundleInfo.bundleCount', 1), 207 count: _.get(result, 'data.bundleInfo.bundleCount', 1),
208 phrase: _.get(result, 'data.bundleInfo.promotionPhrase', ''), 208 phrase: _.get(result, 'data.bundleInfo.promotionPhrase', ''),
209 type: _.get(result, 'data.bundleInfo.discountType', 1), 209 type: _.get(result, 'data.bundleInfo.discountType', 1),
210 - discount: _.get(result, 'data.bundleInfo.discount', '') 210 + discount: _.get(result, 'data.bundleInfo.discount', null)
211 }; 211 };
212 }; 212 };
213 213
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 </span> 9 </span>
10 10
11 <span class="bundle {{#if_cond bundle.type "!=" 2}}hide{{/if_cond}}"> 11 <span class="bundle {{#if_cond bundle.type "!=" 2}}hide{{/if_cond}}">
12 - {{bundle.count}}件起购享{{bundle.discount}}折优惠 12 + {{bundle.count}}件起购享{{#unless bundle.discount}}{{bundle.discount}}折优惠{{/unless}}
13 13
14 </span> 14 </span>
15 15