注意事項
- 偵測到故障品(垃圾品)、問題商品、可能無法修理字樣,下標前注意
- 同捆不可,商品會有獨立的日本運費。
- 同捆不可,商品會有獨立的日本運費
此功能 由google翻譯提供參考,樂淘不保證翻譯內容之正確性,詳細問題說明請使用商品問與答
経年による多少のスレなどがあります。
【発送方法】
佐川飛脚宅配便 送料800円(沖縄・離島は1200円)
【注意事項】 |
---|
|
【落札後の流れ】 |
---|
ドメイン名:www4.auction-racoon.jp |
【決済方法】 |
---|
|
【発送について】 |
---|
|
【同梱について】 |
---|
|
【返品・値引きについて】 |
---|
|
■長野県公安委員会許可 481311100012号
"; var cnt = jData["@attributes"].totalResultsReturned; for (var i = 0; i < cnt; i++) { if (i == 0) s = ""; var json = cnt > 1 ? jData["Result"]["QandA"][i] : jData["Result"]["QandA"]; s += '
'; s += "
"; s += '質問'; s += json.WhichQuestion; s += ""; s += '投稿者:'; s += json["Question"].Id; s += " / 評価:"; s += json["Question"]["Rating"].Point; s += ""; s += ''; var s_date = json["Question"].Date; //if(typeof String.prototype.trim === 'function'){s_date=s_date;var c_date=new Date(s_date);s_date=c_date.getYear()+1900;s_date+="年";s_date+=c_date.getMonth()+1;s_date+="月";s_date+=c_date.getDate();s_date+="日";s_date+=" ";s_date+=c_date.getHours();s_date+="時";s_date+=c_date.getMinutes();s_date+="分";} var p = s_date.indexOf("+"); s_date = s_date.substring(1, p); s_date = s_date.replace("T", " "); s += s_date; s += ""; s += "
"; s += "
"; s += '
'; s += "
"; s += json["Question"].Comment; s += "
"; s += "
"; s += '
'; s += "
"; s += '回答'; s += ''; s_date = json["Answer"].Date; //if(typeof String.prototype.trim === 'function'){s_date=s_date;c_date=new Date(s_date);s_date=c_date.getYear()+1900;s_date+="年";s_date+=c_date.getMonth()+1;s_date+="月";s_date+=c_date.getDate();s_date+="日";s_date+=" ";s_date+=c_date.getHours();s_date+=":";s_date+=c_date.getMinutes();s_date+="分";} p = s_date.indexOf("+"); s_date = s_date.substring(1, p); s_date = s_date.replace("T", " "); s += s_date; s += ""; s += "
"; s += "
"; s += '
'; s += "
"; s += json["Answer"].Comment; s += "
"; s += "
"; } $("#sellerQnA").html(s); }, }); if (window.location.href.indexOf("#qna") != -1) { tab2QnA(); } // 取得問與答清單 $.ajax({ type: "POST", url: "/config/my_qna_api.php", xhrFields: { withCredentials: true, }, contentType: "application/json; charset=utf-8", dataType: "json", data: JSON.stringify({ token: qAToken, action: "searchByItem", data: { item_id: qAItemId, }, }), success: function (response) { if (response.code == "200") { getQAndAList(response.details.data); } else { console.log(response); } }, error: function (error) { console.log("error", error); }, }); }); // 問與答清單 function getQAndAList(qaData) { $(".js-q-and-a-list").addClass("is-show"); // 產生html for (var cc = 1; cc <= qaData.length; cc++) { var templateDom = $(".js-q-and-a-list") .find(".js-q-and-a-item.template") .clone() .removeClass("template") .addClass("clone"); $(".js-q-and-a-list").append(templateDom); } // 填入資料 與 顯示隱藏 html $(".js-q-and-a-list") .find(".js-q-and-a-item.clone") .each(function (index, elm) { getMyQuestion(qaData, elm, index); getAnswer(qaData, elm, index); }); } // 我的發問 function getMyQuestion(qaData, elm, index) { // var queryId = qaData[index].query_id; const isDelete = qaData[index].is_deleted; const isReply = qaData[index].reply_time == "" && qaData[index].reply_time_japanese == ""; const qaList = $(elm).find(".js-q-and-a-item-my-q-name"); // 我的發問 if (qaData[index].query_id != "") { $(elm) .find(".js-q-and-a-item-my-q-name") .text("投稿者:" + qaData[index].query_id.slice(0, 2) + "*****"); } else { $(elm).find(".js-q-and-a-item-my-q-name").text(""); if (isReply) { if (isDelete) { $(qaList).html( $(qaList).html() + `` ); $(elm).find(".js-myQnA-A").addClass("is-show"); $(elm).find(".js-myQnA-A-content").text("已取消問題"); $(elm).find(".js-myQnA-A-time").addClass("is-show"); $(elm).find(".js-myQnA-A-time").text(qaData[index].delete_time); } // qaList.find('.qna-cancel-btn').click(() => { // if (!isDelete) { // fetch('/config/my_qna_api.php', { // method: 'POST', // headers: new Headers({ // 'Content-Type': 'application/json; charset=utf-8', // }), // body: JSON.stringify({ // token: '988119d48318e9b77a6b0fecaf5291c8', // action: 'cancel', // data: { // sn: qaData[index].sn, // }, // }), // }) // .then((response) => { // if (response.ok) { // return response.json(); // } // }) // .then((res) => { // if (res.code == '200') { // qaList.find('.qna-cancel-btn').html('已取消問題'); // qaList.find('.qna-cancel-btn').attr('disabled', true); // $(elm).find('.js-myQnA-A').addClass('is-show'); // $(elm).find('.js-myQnA-A-content').text('已取消問題') // $(elm).find('.js-myQnA-A-time').addClass('is-show'); // $(elm) // .find('.js-myQnA-A-time') // .text( // new Date( // new Date().getTime() - // new Date().getTimezoneOffset() * 60000 // ) // .toISOString() // .slice(0, 19) // .replace('T', ' ') // ); // } else { // Swal.fire({ // icon: 'error', // title: `Oops...${res.code}`, // text: `${res.details.message}(${res.details.target})`, // }).then(async (result) => { // if (result.isConfirmed) { // window.location.reload(); // } // }); // } // }); // } // }); } } if (qaData[index].reply_time != "") { $(elm).find(".js-q-and-a-item-my-q-time").text(qaData[index].reply_time); } else { $(elm).find(".js-q-and-a-item-my-q-time").text(qaData[index].adding_time); } if (qaData[index].content != "") { $(elm).find(".js-q-and-a-item-my-q-content").addClass("is-show"); $(elm) .find(".js-q-and-a-item-my-q-content-text") .text(qaData[index].content); if (qaData[index].query_id != "") { $(elm).find(".js-q-and-a-item-my-q-content-img").addClass("is-show"); } } if (qaData[index].content_japanese != "") { $(elm).find(".js-q-and-a-item-my-q-content-jp").addClass("is-show"); $(elm) .find(".js-q-and-a-item-my-q-content-jp-text") .text(qaData[index].content_japanese); if (qaData[index].query_id != "") { $(elm).find(".js-q-and-a-item-my-q-content-jp-img").addClass("is-show"); } } } // 回答與賣家回覆 function getAnswer(qaData, elm, index) { if ( qaData[index].content_japanese == "" && qaData[index].reply_content != "" ) { // 回答 if (qaData[index].reply_content != "") { $(elm).find(".js-myQnA-A").addClass("is-show"); $(elm).find(".js-myQnA-A-content").text(qaData[index].reply_content); if ( qaData[index].reply_time != "" && qaData[index].reply_time_japanese == "" ) { $(elm).find(".js-myQnA-A-time").addClass("is-show"); $(elm).find(".js-myQnA-A-time").text(qaData[index].reply_time); } else { $(elm).find(".js-myQnA-A-time").addClass("is-show"); $(elm) .find(".js-myQnA-A-time") .text(qaData[index].reply_time_japanese); } } } else { // 賣家回覆 if (qaData[index].query_id != "") { $(elm).find(".js-myQnA-A-seller").addClass("is-show"); if (qaData[index].reply_content_japanese != "") { $(elm).find(".js-myQnA-A-seller-answer").addClass("is-show"); $(elm) .find(".js-myQnA-A-seller-answer-time-jp") .text(qaData[index].reply_time_japanese); $(elm) .find(".js-myQnA-A-seller-answer-content-jp") .text(qaData[index].reply_content_japanese); $(elm) .find(".js-myQnA-A-seller-answer-content") .text(qaData[index].reply_content); } else { $(elm).find(".js-myQnA-A-seller-not-answer").addClass("is-show"); } } } } // 送出提問 function leave_msg(msg_block_check) { if (msg_block_check) { alert("請先電話認證"); } else { var qTitle = filter_string( "%E9%95%B7%E2%97%8EM231%2F%E6%B7%B1%E7%94%B0%E6%81%AD%E5%AD%90%E5%86%99%E7%9C%9F%E9%9B%865%E7%82%B9%E3%82%BB%E3%83%83%E3%83%88%2FAKUA%2FThis%20is%20Me%2Fpalpito%2FBRAND%20NEW%20ME%2FBlue%20Palpitations%2F%20%E5%B8%AF%E4%BB%98%2F%E5%88%9D%E7%89%88%E5%A4%9A%E6%95%B0%2F1%E5%86%86%EF%BD%9E" ), qImg = "https://auc-pctr.c.yimg.jp/i/auctions.c.yimg.jp/images.auctions.yahoo.co.jp/image/dr000/auc0512/user/cbc8ec44d6b6af2b1f9c83d21c1c53004a292d59feee13276367724bfda153f0/i-img1200x902-1733733465790692ijxi23077.jpg?pri=s&w=298&h=298&ccw=298&cch=298&fill=1&fw=298&fh=298&up=0&nf_src=sy&nf_path=images/auc/pc/top/image/1.0.3/na_170x170.png&nf_st=200", qSellerId = "reo33d", qCategorypath = "0,21600,2084009036,21604,2084024930,2084024810,2084058258,2084026646", qEndtime = "2024-12-15 20:07:28", qContent = $(".js-faq-content").val(); $.ajax({ type: "POST", url: "/config/my_qna_api.php", xhrFields: { withCredentials: true, }, contentType: "application/json; charset=utf-8", dataType: "json", data: JSON.stringify({ token: qAToken, action: "add", data: { item_id: qAItemId, title: qTitle, img: qImg, seller_id: qSellerId, categorypath: qCategorypath, endtime: qEndtime, content: qContent, }, }), success: function (response) { console.log("res", response); if (response.code == "201") { Swal.fire({ type: "success", title: response.details.message, text: "點擊OK刷新頁面", }).then((result) => { if (result.value) { location.reload(); } }); } else { console.log(response); } }, error: function (error) { console.log("error", error); }, }); } } const ShippingList = `4`; const ShoppingItemCode = ""; const itemId = "t1164637649"; let dataInfo = {}; if (ShippingList > 0) { const ItemWeight = ``; dataInfo["sellerId"] = "sansandou"; dataInfo["postageSet"] = "1"; dataInfo["price"] = parseInt("581.000000") || parseInt("529.00"); dataInfo["weight"] = ItemWeight ? ItemWeight : 0; } if (ShoppingItemCode) { dataInfo["ShoppingItemCode"] = ShoppingItemCode; } dataInfo["itemId"] = itemId; dataInfo["shipmentToken"] = shipmentToken; // 取得代標運費 const pushItem = (arr) => { let temp = ""; if (arr.length) { arr.forEach((item, i) => { temp += `${item.Name}${ item.SinglePrice == null || item.SinglePrice == 0 ? "" : `-${item.SinglePrice}円` } ${item.IsPrivacyDeliveryAvailable ? "(匿名賣家)" : ""}
`; }); itemLocalFee = Math.max(...arr.map(item => item.SinglePrice)) } else { temp = `依賣家方式寄送(商品說明)
`; } if ($("#Right .T1 .Seller").eq(1).children(".Sellers").eq(3).length == 0) { $("#Right .T1 .Seller").eq(1).append(`
${temp}
`); } else { $("#Right .T1 .Seller").eq(1).children(".Sellers").eq(3).html(`
${temp}
`); } }; const getInfo = (state) => { $.ajax({ type: "POST", url: "/yahoojp/auctions/get_yahoo_item_page_shipment.php", xhrFields: { withCredentials: true, }, data: { action: state ? "getCommonShipments" : ShippingList > 0 ? "getShoppingInfoShipments" : "getItemShipments", data: JSON.stringify(dataInfo), }, success: function (response) { if (response.code == "200") { const { methods } = response.details.data; pushItem(methods); } else { if (state < 1) { getInfo(state + 1); } } }, error: function (error) { console.error("error", error); }, }); }; getInfo(0);
{{ item.title }}
{{ option.text }}
{{ item.unit }}
注意事項
試算結果
匯率 {{actionList[0].exchangeRate}}
注意事項
{{locked? priceItem.JPY : numberToJPY(priceItem.JPY)}}
{{locked ? priceItem.TWD : numberToTWD(priceItem.TWD)}}
{{itemExpress.total.title}}
{{locked? itemExpress.total.value.TWD : numberToTWD(itemExpress.total.value.TWD)}}
{{itemExpress.total.append}}
已符合
未符合
`, }); const vApp = app.use(vuetify).mount("#vueTestFee");