select-address.js 383 Bytes
/**
 * 购物车 地址选择
 * @author: bikai<kai.bi@yoho.cn>
 * @date: 2015/12/14
 */

var $ = require('jquery'),
    orderInfo = require('./order-info').orderInfo;

$('.address-item').on('touchend', function() {
    orderInfo('addressId', $(this).data('address-id'));
}).on('touchend', '.edit', function() {
    window.location.href = $(this).data('href');
    return false;
});