...
|
...
|
@@ -13,7 +13,6 @@ var $addressForm = $('.edit-address'), |
|
|
$submit = $('.submit'),
|
|
|
$editAddressPage = $('.my-edit-address-page'),
|
|
|
$addressListPage = $('.my-address-list-page'),
|
|
|
$footer = $('#yoho-footer'),
|
|
|
$backBtn = $('.nav-back'),
|
|
|
$navTitle = $('.nav-title'),
|
|
|
$input = $('input, textarea'),
|
...
|
...
|
@@ -111,12 +110,6 @@ $submit.on('touchend', function() { |
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
$input.on('focus', function() {
|
|
|
$footer.hide();
|
|
|
}).on('blur', function() {
|
|
|
$footer.show();
|
|
|
});
|
|
|
|
|
|
// 省市区列表异步加载
|
|
|
$.get('/home/locationList').then(function(html) {
|
|
|
$addressListPage.html(html);
|
...
|
...
|
@@ -124,9 +117,7 @@ $.get('/home/locationList').then(function(html) { |
|
|
// 省市区
|
|
|
$area.on('touchend', function() {
|
|
|
$editAddressPage.hide();
|
|
|
$addressListPage.show(1, function() {
|
|
|
$footer.hide();
|
|
|
});
|
|
|
$addressListPage.show();
|
|
|
currentPage = 'list';
|
|
|
$navTitle.html('地区选择');
|
|
|
});
|
...
|
...
|
@@ -165,7 +156,6 @@ $.get('/home/locationList').then(function(html) { |
|
|
$editAddressPage.show();
|
|
|
currentPage = 'edit';
|
|
|
$navTitle.html(navTitle);
|
|
|
$footer.show();
|
|
|
|
|
|
// 恢复默认的三级选择
|
|
|
$addressListPage.hide();
|
...
|
...
|
|