$('.higherqty').click(function () { $pid = $(this).data('id'); if ($pid !== undefined) { $qty = parseInt($('.pqty' + $pid).val()); $maxq = $('.pqty' + $pid).data("max"); if ($qty >= $maxq) { $('.pqty' + $pid).val($maxq); } else { $('.pqty' + $pid).val(($qty + 1)); } return; } $qty = parseInt($('#pqty').val()); $maxq = $('#pqty').data("max"); if ($qty >= $maxq) { $('#pqty').val($maxq); } else { $('#pqty').val(($qty + 1)); } }); $('.lowerqty').click(function () { $pid = $(this).data('id'); if ($pid !== undefined) { $qty = parseInt($('.pqty' + $pid).val()); if ($qty <= 1) { $('.pqty' + $pid).val(1); } else { $('.pqty' + $pid).val($qty - 1); } return; } $qty = parseInt($('#pqty').val()); if ($qty <= 1) { $('#pqty').val(1); } else { $('#pqty').val($qty - 1); } }); function addCart(value, qty = 1, mute = true) { $x = {"productid": value, "qty": qty} cnts = postCart('add', $x); if (mute == false) { Swal.fire({ title: '', text: '已為您加入購物車!', icon: 'success', showCancelButton: true, confirmButtonText: '前往結帳', cancelButtonText: "繼續購物", iconColor: '#63aa3b', confirmButtonColor: '#63aa3b', }).then((result) => { if (result.isConfirmed) { window.location = "/cart/index.html"; } }); } } function removeCart(value) { /* | 移除 localstorage 資料 */ var index = cartList.findIndex(element => element.id === value); if (index !== -1) { cartList.splice(index, 1); } updateCartList(cartList); $(".cartcount").html(countCartlist()); } function callCartlist(ele) { $.ajax({ url: "/papi/gencartlist.html", type: "post", data: {cartList, '_csrf-frontend': 'Dnh8foorI2IwZjrywZ58Fkc4C7cYHqnjyQU48ZMhlZdWTBIIwlFFI2IscZuvrjVbKk5O-CEu2dSRXHuF1kLMxw=='}, dataType: "json", async: false, success: function (data) { if (data["rst"] === "fail") { return; } else { // console.log(data["data"]); $(ele).html(data["data"]); $(".totalprice").html(data["total"]); $(".totalcurrency").html(data["cursym"]); } }, error: function (data) { }/*function结束*/ });/*ajax结束*/ } function postCart(method, value) { let cnts = 0; $.ajax({ url: "/papi/addq.html", type: "post", data: {'value': value, '_csrf-frontend': 'Dnh8foorI2IwZjrywZ58Fkc4C7cYHqnjyQU48ZMhlZdWTBIIwlFFI2IscZuvrjVbKk5O-CEu2dSRXHuF1kLMxw=='}, dataType: "json", async: false, success: function (data) { cnts = data['cnt']; console.log(cnts); $(".itemcount").html(cnts); }, error: function (data) { }/*function结束*/ });/*ajax结束*/ return cnts; } function couponSelect(val, $remove = false) { let cnts = 0; $.ajax({ url: "/papi/add-coupon.html", type: "post", data: {'value': val, '_csrf-frontend': 'Dnh8foorI2IwZjrywZ58Fkc4C7cYHqnjyQU48ZMhlZdWTBIIwlFFI2IscZuvrjVbKk5O-CEu2dSRXHuF1kLMxw=='}, dataType: "json", async: false, success: function (data) { $sucstring = "折價券使用成功"; $falstring = "無法使用折價券"; if ($remove == true) { $sucstring = "折價券已移除"; $falstring = "折價券無法移除"; } if (data['rst'] == "success") { Swal.fire({ title: $sucstring, icon: "info", confirmButtonText: "確認", // iconColor:"#f00", confirmButtonColor: "#3fc3ee", }); } else { Swal.fire({ title: $falstring, icon: "info", confirmButtonText: "確認", // iconColor:"#f00", confirmButtonColor: "#3fc3ee", }); } }, error: function (data) { return false; }/*function结束*/ });/*ajax结束*/ return true; } function redeemcode($vals, $tz, $remove = false) { let val = $vals; if (val.length <= 0 && $remove == false) { return; } $.ajax({ url: "/papi/add-redeem.html", type: "post", data: { 'value': val,'tz':$tz, '_csrf-frontend': 'Dnh8foorI2IwZjrywZ58Fkc4C7cYHqnjyQU48ZMhlZdWTBIIwlFFI2IscZuvrjVbKk5O-CEu2dSRXHuF1kLMxw==' }, dataType: "json", async: false, success: function (data) { $sucstring = "折扣碼使用成功"; $falstring = "無法使用折扣碼"; if ($remove == true) { $sucstring = "折扣碼已移除"; $falstring = "折扣碼無法移除"; } if (data['rst'] == "success") { Swal.fire({ title: $sucstring, icon: "info", confirmButtonText: "確認", // iconColor:"#f00", confirmButtonColor: "#3fc3ee", }); } else { Swal.fire({ title: $falstring, icon: "info", confirmButtonText: "確認", // iconColor:"#f00", confirmButtonColor: "#3fc3ee", }); } }, error: function (data) { return false; }/*function结束*/ });/*ajax结束*/ return true; } function SetTz($tz) { let cnts = 0; $.ajax({ url: "/papi/settz.html", type: "post", data: {'value': $tz, '_csrf-frontend': 'Dnh8foorI2IwZjrywZ58Fkc4C7cYHqnjyQU48ZMhlZdWTBIIwlFFI2IscZuvrjVbKk5O-CEu2dSRXHuF1kLMxw=='}, dataType: "json", async: true, success: function (data) { }, error: function (data) { return false; }/*function结束*/ });/*ajax结束*/ return true; } $(document).ready(function () { });