...
|
...
|
@@ -117,19 +117,19 @@ $input.on('focus', function() { |
|
|
$footer.show();
|
|
|
});
|
|
|
|
|
|
// 省市区
|
|
|
$area.on('touchend', function() {
|
|
|
// 省市区列表异步加载
|
|
|
$.get('/home/locationList').then(function(html) {
|
|
|
$addressListPage.html(html);
|
|
|
|
|
|
// 省市区
|
|
|
$area.on('touchend', function() {
|
|
|
$editAddressPage.hide();
|
|
|
$addressListPage.show(1, function() {
|
|
|
$footer.hide();
|
|
|
});
|
|
|
currentPage = 'list';
|
|
|
$navTitle.html('地区选择');
|
|
|
});
|
|
|
|
|
|
// 省市区列表异步加载
|
|
|
$.get('/home/locationList').then(function(html) {
|
|
|
$addressListPage.html(html);
|
|
|
});
|
|
|
|
|
|
// touchend 在下滑的时候会触发
|
|
|
// 省市区联动
|
...
|
...
|
|