Authored by weiqingting

完善

... ... @@ -65,19 +65,20 @@ var Order = {
});
/*使用优惠卷支付 下面的文本框*/
e.$jc.on("focus change",function(event) {
var radio=$(this).prev('label').prev(':radio');
if(event.type==="focus"){
e.$jc.on('focus change', function(event) {
var radio = $(this).prev('label').prev(':radio');
if (event.type === 'focus') {
radio.attr('checked', true);
}else{
} else {
radio.val($(this).val());
}
});
/*使用YOHO币支付*/
e.$bp.data('tobi', e.$tobi.html());
e.$bp.on("keyup change",function() {
e.$bp.on('keyup change', function() {
var bi = c.enterNUM($(this).val(), $(this).data('tobi'));
$(this).val(bi);
... ...