order.page.js
5.23 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/**
* [购物流程]结算页
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2016/7/8
*/
var $ = require('yoho-jquery'),
lazyLoad = require('yoho-jquery-lazyload');
var Alert = require('../plugins/dialog').Alert;
var minusPlus = {
minus: '',
plus: ''
};
var $coin = $('#input-coin'),
$coinTip = $('#coin-tip'),
$coinSure = $('#coin-sure'),
$coinUsed = $('#coin-used'),
$coinDeduction = $('#coin-deduction'),
coinMax = +$coin.data('max'),
coinStatus = {
err: '请输入一个正整数',
max: '您的有货币不足',
success: '抵扣¥',
maxUse: '您最多使用',
muPostfix: '个有货币'
};
var $balanceCost = $('#balance-cost'),
$balanceCoin = $('#balance-coin');
var $printPrice = $('#print-price');
var $invoice = $('#invoice-content');
require('yoho-jquery-dotdotdot');
require('../plugins/check'); // before 地址和发票
require('./order/address'); // 地址
require('./order/invoice'); // 发票
lazyLoad($('img.lazy'));
// dot
$('.brand-and-name .name').dotdotdot({
wrap: 'letter'
});
// JIT拆单
$('.show-package').click(function() {
$('.package-list').toggleClass('hide');
});
// 有货币、备注切换显示
$('.coin-ctrl, .remark-ctrl').click(function() {
var $this = $(this),
$icon = $this.hasClass('iconfont') ? $this : $this.siblings('.iconfont');
if ($icon.hasClass('minus')) {
// hide panel
$icon.html(minusPlus.plus).removeClass('minus');
} else {
// show panel
$icon.html(minusPlus.minus).addClass('minus');
}
$this.parent('.title').siblings('.content').toggleClass('hide');
});
// 使用有货币输入框联动
$coin.on('input', function() {
var c = $.trim($coin.val());
var err = true;
if (c === '') {
// 输入框为空,确定按钮不可点
$coinTip.addClass('vhide');
$coinSure.addClass('disable');
return;
} else if (!/^[1-9]\d*$/.test(c)) {
// 验证输入不为正整数
$coinTip.text(coinStatus.err);
} else if (+c > coinMax) {
// 有货币不足
$coinTip.text(coinStatus.max);
} else if (+c > $balanceCost.data('cost') * 100) {
// 输入的有货币大于订单额度
$coinTip.text(coinStatus.maxUse + ($balanceCost.data('cost') * 100) + coinStatus.muPostfix);
} else {
err = false;
$coinTip.text(coinStatus.success + (c / 100).toFixed(2));
// 已使用面板的数据显示更新
$coinUsed.html(c);
$coinDeduction.html((c / 100).toFixed(2));
}
if (err) {
$coinSure.addClass('disable');
$coinTip.removeClass('vhide');
} else {
$coinSure.removeClass('disable');
$coinTip.addClass('vhide');
}
});
/**
* 切换使用有货币面板显示
*/
function toggleCoinPanel() {
$('.using-coin, .used-coin').toggleClass('hide');
}
function compute(coin) {
$.ajax({
type: 'GET',
url: '/shopping/order/compute',
data: {
coin: coin
}
}).then(function(data) {
var usedCoin,
cost;
if (data.code === 200) {
usedCoin = data.data.use_yoho_coin;
cost = data.data.last_order_amount;
$balanceCost.children('em').text(cost);
$balanceCoin.text(usedCoin);
}
});
}
// 获取已使用的有货币
function getCoinUsed() {
var coin = $coinUsed.text();
return coin === '' ? 0 : parseInt(coin, 10); // 使用parseInt可以排除异常情况的转化影响
}
$coinSure.click(function() {
if ($coinSure.hasClass('disable')) {
return;
}
// 切换显示
compute(getCoinUsed());
toggleCoinPanel();
});
$('.used-coin').on('click', '.modify', function() {
toggleCoinPanel();
}).on('click', '.cancel', function() {
$coin.val('').trigger('input');
// reset used coin panel show
$coinUsed.html('0');
$coinDeduction.html('0');
compute(0);
// 隐藏有货币面板并重置子面板显示
$('.coin-ctrl.iconfont').trigger('click');
toggleCoinPanel();
});
// 添加备注-是否打印价格
$printPrice.printPrice = true; // 默认为true
$('.print-price-radio').check({
type: 'radio',
group: 'print-price',
onChange: function(el, checked, value) {
if (checked) {
$printPrice.isPrintPrice = value === 1 ? true : false;
}
}
});
// 订单提交
$('#submit-order').click(function() {
var reqParam = {
address_id: $('.address.focus').data('id'),
yohoCoin: getCoinUsed(),
remark: $('#remark-content').val(),
isPrintPrice: $printPrice.printPrice
};
var $invoiceDetail;
// 发票信息
if ($invoice.find('.checked').length > 0) {
$invoiceDetail = $invoice.find('.invoice-detail');
$.extend(reqParam, {
invoices_title: $invoiceDetail.data('title'),
invoices_type_id: $invoiceDetail.data('content')
});
}
$.ajax({
type: 'POST',
url: '/shopping/order/submit',
data: reqParam
}).then(function(data) {
if (data.code === 200) {
location.href = data.data.payUrl;
} else {
new Alert(data.message).show();
}
});
});