...
|
...
|
@@ -40,17 +40,8 @@ require('common'); |
|
|
|
|
|
lazyLoad();
|
|
|
|
|
|
/**
|
|
|
* Cookie Init
|
|
|
*/
|
|
|
function orderInfoInit() {
|
|
|
let product_sku = qs.product_sku;
|
|
|
|
|
|
if (orderInfo('product_sku') !== product_sku) {
|
|
|
cookie.remove(['buynow_info']);
|
|
|
orderInfo('product_sku', product_sku);
|
|
|
}
|
|
|
}
|
|
|
// 存 COOKIE
|
|
|
orderInfo('product_sku', qs.product_sku);
|
|
|
|
|
|
function getQueryParam() {
|
|
|
let queryArray = location.search.substr(1).split('&'),
|
...
|
...
|
@@ -525,4 +516,3 @@ $(window).scroll(function() { |
|
|
$('.address-bottom').hide();
|
|
|
}
|
|
|
}); |
|
|
orderInfoInit(); |
...
|
...
|
|