...
|
...
|
@@ -13590,6 +13590,15 @@ require("js/common"); |
|
|
|
|
|
lazyLoad();
|
|
|
|
|
|
// 初始化发票信息
|
|
|
function invoiceInit() {
|
|
|
if (orderCont.invoiceType) {
|
|
|
$('.invoice-type').text(invoiceCont[orderCont.invoiceType] + '(' + invoicesType[orderCont.invoicesType] + ')');
|
|
|
} else {
|
|
|
$('.invoice-type').text('服装(电子)');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
function getQueryParam() {
|
|
|
var queryArray = location.search.substr(1).split('&'),
|
|
|
i,
|
...
|
...
|
@@ -13684,6 +13693,9 @@ $invoice.on('touchend', '.checkbox', function() { |
|
|
orderInfo('invoicesType', null);
|
|
|
orderInfo('invoiceTitle', null);
|
|
|
}
|
|
|
|
|
|
orderCont = window.cookie('order-info') && JSON.parse(window.cookie('order-info'));
|
|
|
invoiceInit();
|
|
|
});
|
|
|
|
|
|
|
...
|
...
|
@@ -13949,11 +13961,8 @@ if (orderInfo('address') && orderInfo('address').is_support === 'N') { |
|
|
orderCompute();
|
|
|
}
|
|
|
|
|
|
if (orderCont.invoiceType) {
|
|
|
$('.invoice-type').text(invoiceCont[orderCont.invoiceType] + '(' + invoicesType[orderCont.invoicesType] + ')');
|
|
|
} else {
|
|
|
$('.invoice-type').text('服装(电子)');
|
|
|
}
|
|
|
// 初始化发票信息内容
|
|
|
invoiceInit();
|
|
|
});
|
|
|
define("js/cart/order-info", ["jquery","hammer"], function(require, exports, module){
|
|
|
/**
|
...
|
...
|
|