address-act.page.js
3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* 修改地址
* @author: bikai<kai.bi@yoho.cn>
* @date: 2015/11/30
*/
var $ = require('yoho-jquery'),
tip = require('../plugin/tip'),
security = require('../plugin/security'),
loading = require('../plugin/loading');
var $addressForm = $('.edit-address'),
$submit = $('.submit'),
$editAddressPage = $('.my-edit-address-page'),
$addressListPage = $('.my-address-list-page'),
$backBtn = $('.nav-back'),
$navTitle = $('.nav-title'),
$input = $('input, textarea'),
navTitle = $navTitle.html(),
$area = $('.area'),
isSubmiting,
currentPage = 'edit';
var Vue = require('vue');
var vueAddressAct = require('home/address/address-act.vue');
var addressVact = new Vue({
el: '#vAddressAct',
components: {
vueAddressAct: vueAddressAct
}
});
require('../common.js');
$($editAddressPage, $addressListPage).css('min-height', function() {
return $(window).height() - $('#yoho-header').height();
});
// 清除返回按钮原有链接
$backBtn.attr('href', 'javascript:void(0);');
// 自定义返回按钮事件
$backBtn.on('touchend', function(e) {
if (currentPage === 'list') {
$addressListPage.hide();
$editAddressPage.show();
e.preventDefault();
currentPage = 'edit';
$navTitle.html(navTitle);
// 恢复默认的三级选择
$addressListPage.hide();
$addressListPage.find('ul').hide().find('li').removeClass('highlight');
$addressListPage.children('ul').show().children('li').show();
} else {
window.history.go(-1);
}
});
// 提交表单请求
$addressForm.on('submit', function() {
if (isSubmiting) {
return false;
}
if (security.hasDangerInput(false)) {
return false;
}
// 简单的表单校验
if (!$(this).find('[name="consignee"]').val()) {
tip.show('收件人不能为空');
return false;
}
if (!$(this).find('[name="mobile"]').val()) {
tip.show('手机号不能为空');
return false;
}
if (!$(this).find('[name="area_code"]').val() || !$(this).find('[name="area"]').val() ||
$(this).find('[name="area_code"]').val().length < 6) {
tip.show('省市区不能为空');
return false;
}
if (!$(this).find('[name="address"]').val()) {
tip.show('地址不能为空');
return false;
}
isSubmiting = true;
loading.showLoadingMask();
$submit.css('background', '#777');
$.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 || '网络出了点问题~');
isSubmiting = false;
loading.hideLoadingMask();
} else if (window.queryString) {
if (window.queryString.refer === 'shopping') {
window.location.href = '/cart/index/new/selectAddress';
} else if (window.queryString.refer === 'modify') {
window.location.href = '/home/addressModify';
} else {
window.location.href = '/home/address';
}
} else {
window.location.href = '/home/address';
}
}).fail(function() {
tip.show('网络出了点问题~');
isSubmiting = false;
loading.hideLoadingMask();
$submit.css('background', '#444');
});
return false;
});
$submit.on('touchend', function() {
if (security.hasDangerInput(false)) {
return false;
}
$input.blur();
$addressForm.submit();
return false;
}).on('touchstart', function() {
$(this).addClass('highlight');
}).on('touchend touchcancel', function() {
$(this).removeClass('highlight');
});
// 省市区
$area.on('touchstart', function() {
addressVact.$children[0].show = true;
});
// IOS 光标隐藏
$area.find('input[name=area]').on('touchend', function() {
return false;
});