Authored by 毕凯

Merge remote-tracking branch 'origin/feature/buynowpoint' into release/5.9

... ... @@ -184,6 +184,18 @@ class ChosePanel {
return this._choseBtnSureClick(e, false);
});
$yohoPage.on('touchstart', '#chose-btn-buynow', (e) => {
let sku = this._checkSku(this.buyNum);
window._yas.sendCustomInfo({
op: 'YB_GDS_BUYNOW_BTN',
param: JSON.stringify({
C_ID: this.C_ID,
PRD_ID: this.data.cartInfo.productId,
PRD_NUM: this.buyNum,
PRD_SKN: this.data.cartInfo.productSkn,
PRD_SKU: sku && sku.skuId
})
}, true);
return this._choseBtnSureClick(e, true);
});
}
... ...
... ... @@ -105,14 +105,16 @@
}
.record-right {
float: right;
color: #b0b0b0;
padding-right: 30px;
line-height: 30px;
text-align: right;
position: absolute;
right: 0;
.color-r {
color: #d0021b;
font-size: 23px;
}
.iconfont {
... ...