Authored by 毕凯

支付方式可以配置

... ... @@ -197,13 +197,10 @@
font-size: 32rem / $pxConvertRem;
color: #fff;
text-align: center;
}
.cod {
background: #000;
}
.pay-online {
.default {
background: #57b038;
}
... ...
... ... @@ -121,14 +121,18 @@
</section>
<ul class="pay-mode">
<li class="cod">
<span class="iconfont">&#xe62e;</span>
货到付款
</li>
<li class="pay-online">
<span class="iconfont">&#xe62f;</span>
在线支付
{{# paymentWay}}
<li class="{{#if default}}default{{/if}}" data-pay-id={{id}}>
<span class="iconfont">
{{#if default}}
&#xe62f;
{{else}}
&#xe62e;
{{/if}}
</span>
{{name}}
</li>
{{/ paymentWay}}
</ul>
{{/ orderEnsure}}
</div>
... ...