Authored by 姜枫

处理颜色问题

... ... @@ -88,13 +88,8 @@ var YohoListPage = {
}
});
$('.color-body .input-radio', this.rootDoc).check({
type: 'radio',
onChange: function(ele, checked, value) {
YohoListPage.go({
color: checked ? value : ''
});
}
$('.color-body .input-radio', this.rootDoc).click(function() {
YohoListPage.go({color: $(this).data('value')});
});
YohoListPage.eventBind();
... ...