address.js 2.75 KB
/**
 * 地址管理
 * @author: bikai<kai.bi@yoho.cn>
 * @date: 2015/11/17
 */

var $ = require('jquery'),
    tip = require('../plugin/tip');

var $action = $('.action'),
    $addressForm = $('.edit-address'),
    $submit = $('.submit'),
    $addAddress = $('.add-address'),
    $editAddressPage = $('.my-edit-address-page'),
    $addressListPage = $('.my-address-list-page'),
    $area = $('.area'),
    $footer = $('#yoho-footer'),
    isSubmiting,
    newArea = [];

function editAddress(data) {
    data = data || {};
    $addressForm.find('[name="id"]').val(data.id || '');
    $addressForm.find('[name="consignee"]').val(data.consignee || '');
    $addressForm.find('[name="mobile"]').val(data.mobile || '');
    $addressForm.find('[name="area_code"]').val(data.areaCode || '');
    $addressForm.find('[name="area"]').val(data.area || '');
    $addressForm.find('[name="address"]').val(data.address || '');
    $editAddressPage.show();

    // $addressForm.find('[name="address"]').blur();
    // $addressForm.find('[name="consignee"]').focus();
}

function deleteAddress(data) {

}

// 添加地址
$addAddress.on('touchend', function() {
    editAddress();
});

// 编辑或删除
$action.on('touchend', '.edit', function() {
    editAddress($(this).data());
}).on('touchend', '.del', function() {
    deleteAddress();
});

$submit.on('touchend', function() {
    $addressForm.submit();
    return false;
});

$addressForm.on('submit', function() {
    if (isSubmiting) {
        return false;
    }
    isSubmiting = true;
    $.ajax({
        method: 'POST',
        url: '/home/saveaddress',
        data: $(this).serialize()
    }).then(function(res) {
        if ($.type(res) !== 'object') {
            res = {};
        }
        if (res.code !== 200) {
            tip.show(res.message || '网络出了点问题~');
        } else {
            window.location.reload();
        }
    }).fail(function() {
        tip.show('网络出了点问题~');
    }).always(function() {
        isSubmiting = false;
    });
    return false;
});

// 省市区
$area.on('touchend', function() {
    $footer.hide();
    $addressListPage.show();
});

$addressListPage.on('touchend', '.address', function() {
    newArea.push($(this).children('.caption').text());
    $(this).siblings().hide();
    $(this).children('ul').show();
    return false;
}).on('touchend', '.address-last', function() {

    // 填结果到 html
    newArea.push($(this).children('.caption').text());
    $('[name="area"]').val(newArea.join(' '));
    $('[name="area_code"]').val($(this).data('id'));

    // 恢复默认的三级选择
    $addressListPage.hide();
    $addressListPage.find('ul').hide();
    $addressListPage.children('ul').show().children('li').show();
    $footer.show();
    newArea = [];
    return false;
});