以下僅列出部分資料提供參考,正確且完整的公告資訊及標案文件,請點擊「完整公告資訊」按鍵至標案網站瀏覽。
$(document).ready(function() { $('[data-toggle="tooltip"]').tooltip(); $("#btCopyUrl").click(function() { showToast("網址複製分享", copyToClipboard(window.location.href)?"網址已複製":"網址複製失敗"); }); $("#trackBid").click(function() { $.ajax({ method: 'post', url: '/bidtrackrest/bidtrackaod', data: {bidtype: '1', id: 3693937, op: $("#trackBid").is(":checked")?'add':'del', _csrf: '5a25f92f-8ae7-42f1-82b1-c37694c29c9d'}, dataType: 'json', beforeSend: function() { $("#myModalT").text("追蹤標案"); $("#myModalM").text("資料傳送中"); $("#myModalB").prop("disabled", true); $("#myModal").modal(); }, success: function(data, textStatus) { if(!data.isSuccess) { $("#trackBid").prop("checked", !$("#trackBid").is(":checked")); } $("#myModalM").text(data.message); }, error: function(xmlHttpRequest, textStatus, errorThrown) { $("#trackBid").prop("checked", !$("#trackBid").is(":checked")); $("#myModalM").text(xmlHttpRequest.responseText); }, complete: function(xmlHttpRequest, textStatus) { $("#myModalB").prop("disabled", false); } }); }); $("#imgUrlQrCode").attr("src", "https://quickchart.io/qr?text=" + window.location.href + "&size=150"); });