Authored by biao

Merge branch 'release/1.0' of http://git.yoho.cn/fe/yoho-blk into release/1.0

... ... @@ -241,14 +241,14 @@ $('.used-coin').on('click', '.modify', function() {
});
// 添加备注-是否打印价格
$printPrice.printPrice = false; // 默认为false
$printPrice.printPrice = 'N'; // 默认为false
$('.print-price-radio').check({
type: 'radio',
group: 'print-price',
onChange: function(el, checked, value) {
if (checked) {
$printPrice.isPrintPrice = value === 1 ? true : false;
$printPrice.isPrintPrice = value === 1 ? 'Y' : 'N';
}
}
});
... ...
.blk-cart-page {
.checkbox {
cursor: pointer;
}
.cart-header {
margin: 10px auto;
width: 100%;
... ...