Authored by xuqi

new address click

... ... @@ -276,7 +276,12 @@ $('.address-all').click(function() {
});
// 新增地址
$('.new-address').click(newAddress);
$('.new-address').click(function() {
// not $('.address-all).click(newAddress);
// because newAddress get a param, this type written will cause disaccord param of newAddress
newAddress();
});
$('.address-list').on('click', '.address', function() {
... ...