// // footer.parentNode.insertBefore(div, footer); // const iframe = document.createElement(`iframe`); // iframe.style.width = `100%`; // iframe.style.border = `none`; // iframe.classList.add(`styled-calendar-container`); // iframe.setAttribute(`data-cy`, `calendar-embed-iframe`); // iframe.src=`https://embed.styledcalendar.com/?_=1#C7bufjcWW9ysaejmxZJb`; // iframe.addEventListener(`load`, () => { // const script = document.createElement(`script`); // script.type = `module`; // script.src = `https://embed.styledcalendar.com/assets/parent-window.js`; // document.body.appendChild(script); // }); // footer.parentNode.insertBefore(iframe, footer); // // // // // } // } // if (/^\/member_digital_product_detail/.test(location.pathname)) { // const container = document.querySelector(`.digital_product_detail_container`); // const list = document.querySelector(`#main_point_container`); // if (container && list) { // container.appendChild(list); // } // // 短視頻加速器 // const douyin = document.querySelector(`iframe[src*="https://open.douyin.com"]`); // if (douyin) { // const w = window.screen.availWidth; // const h = Math.ceil(w * 1.77); // douyin.style.width = w + `px`; // douyin.style.height = h + `px`; // } // } if (/^\/member_card/.test(location.pathname)) { const div = document.createElement(`div`); div.innerHTML = await fetch(`/member_reward_wallet`).then(r => r.text()); const walletAmount = div.querySelectorAll(`.info.ds_main_color .info_content`)[2].innerText; const walletDiv = document.createElement(`div`); walletDiv.className = `member_reward_wallet` walletDiv.innerHTML = ` 會員分潤錢包 : ${walletAmount}`; const cashDiv = document.querySelector(`.member_cash`); cashDiv.parentNode.insertBefore(walletDiv, cashDiv) } if (/^\/member_bank_cash/.test(location.pathname)) { document.querySelectorAll(`.table_list tr td:nth-child(3)`).forEach(td => td.innerText = td.innerText.replace(`【人工調整】`, ``)); document.querySelector(`.table_list caption`).innerText = `時髦局獎金明細記錄`; // let positive = 0; // let negative = 0; // document.querySelectorAll(`.table_list tr td:nth-child(1)`).forEach(td => { // const n = parseFloat(td.innerText); // n > 0 ? positive += n : negative += n; // // if (n < 0) { // // td.innerText = `(${-n})`; // // } // }); // document.querySelector(`.table_modify`).innerHTML = // `歷史總額${positive} // 已提領總額${-negative} // 餘額${positive + negative}`; } if (/^\/member_reward_wallet/.test(location.pathname)) { document.querySelector(`.dashboard_title`).innerHTML = `我的錢包總額
(時髦局獎金與購物獎金)
`; const noDataMessageText = document.querySelector(`.no_data_message_text`); if (noDataMessageText) { noDataMessageText.innerHTML = `更多提領記錄`; } const infoTitles = document.querySelectorAll(`.info.ds_main_color .info_title`); infoTitles[2].innerText = `賬戶餘額`; const html = await fetch("/member_bank_cash").then(r => r.text()); const div = document.createElement(`div`); div.innerHTML = html; let withdraw = 0; div.querySelectorAll(`.table_list tr`).forEach(tr => { const tds = Array.from(tr.querySelectorAll(`td`)); if (!tds || tds.length !== 3) { return; } const n = parseFloat(tds[0].innerText.replace(/[,|$]/g, ``)); if (/【結清】/.test(tds[2].innerText)) { withdraw += n; } }); const mdivs = Array.from(document.querySelectorAll(`.info.ds_main_color .info_content`)); const total = parseFloat(mdivs[0].innerText.replace(/[,|$]/g, ``)); mdivs[1].innerText = `$${-withdraw}`; mdivs[2].innerText = `$${total + withdraw}`; document.querySelectorAll(`.wallet_detail_outside .type`).forEach(div => div.innerText = div.innerText.replace(`人工調整`, `時髦局獎金明細記錄`)); document.querySelectorAll(`.apply_withdrawal input[type=text]`).forEach(i => i.placeholder = ``); } if (/^\/website_contact/.test(location.pathname)) { const caption = document.querySelector(`form[name="website_faq"] .table_modify caption`); if (caption) { caption.innerText = `聯係我們`; } // remove 1st empty select option const maqOption = document.querySelector(`#id_maq_category_level_1 option`); if (maqOption) { maqOption.remove(); } } if (/^\/mff/.test(location.pathname)) { document.body.querySelectorAll(`.meforms_finish .form_block .block_content .step_icon .step`) .forEach((s, i) => { if(i === 1) { s.innerText = `發送 Email 通知`; } else if (i === 2) { s.innerText = `確認✅`; } }); // send ga4 event const caption = document.querySelector(`.meforms_caption`).innerText; const items = Array.from(document.querySelectorAll(`.form_block .item_value`)); const item = items .find(v => /^MF[0-9]+/.test(v.innerText)); const formId = !item ? `` : item.innerText; gtag('event', 'apply', { currency: 'NTD', transaction_id: formId, // Transaction ID. affiliation: '', shipping: 0, tax: 0, value: 0, items: [ { item_id: formId, item_name: caption, item_category: '', price: 0, quantity: 0, }, ], }); } (() => { const qrcode = document.querySelector(`.qrcode img`); const shareBtn = document.querySelector(`#share_short_url_btn`); if (qrcode && shareBtn) { const qurls = qrcode.src.split(`data=`); if (qurls.length >= 1) { const surl = new URL(decodeURIComponent(qurls[1])); // const surl = new URL(location.href); let msn = surl.searchParams.get(`m2_member_sn`) || ``; let psn = surl.searchParams.get(`product_sn`) || ``; let ssn = surl.searchParams.get(`store_type_sn`) || ``; let csn = surl.searchParams.get(`category_sn`) || ``; let fsn = surl.pathname === `/meforms.php` ? surl.searchParams.get(`sn`) : ``; let wsn = surl.pathname === `/website_content.php` ? surl.searchParams.get(`sn`) : ``; msn = DAKA_SHARES[msn] || msn || `0`; psn = !psn || psn.length >= 4 ? psn : `a`.repeat(4 - psn.length) + psn; ssn = !ssn ? `` : `s${ssn}`; csn = !csn ? `` : `c${csn}`; fsn = !fsn ? `` : `f${fsn}`; wsn = !wsn ? `` : `w${wsn}`; const ps = [msn, psn, ssn, csn, fsn, wsn].filter(p => p).join(`/`); console.log(`ps`, ps); // const url = `https://im.jznana.com/${msn}/${psn}${qs}`; const url = `https://im.jznana.com/${ps}`; console.log(`url`, url); // change btn url shareBtn.setAttribute(`data-clipboard-text-bak`, surl) shareBtn.setAttribute(`data-clipboard-text`, url) // change qrcode if (qrcode) { qrcode.src = `${qurls[0]}data=${encodeURIComponent(url)}` } } } })(); // (() => { // const shareBtn = document.querySelector(`.share_link_panel .share_link_content .btn.copy_btn`); // if (shareBtn) { // const surl = new URL(shareBtn.getAttribute(`data-clipboard-text`)); // const qrcode = document.querySelector(`.share_link_panel .share_link_content .qrcode img`); // if (qrcode) { // qrcode.src = `https://chart.googleapis.com/chart?cht=qr&choe=UTF-8&chs=300x300&chl=${encodeURIComponent(surl)}` // } // } // })(); // (() => { // const shareBtn = document.querySelector(`.share_link_panel .share_link_content .btn.copy_btn`); // if (shareBtn) { // const surl = new URL(shareBtn.getAttribute(`data-clipboard-text`)); // // const surl = new URL(location.href); // let msn = surl.searchParams.get(`m2_member_sn`) || ``; // let psn = surl.searchParams.get(`product_sn`) || ``; // let ssn = surl.searchParams.get(`store_type_sn`) || ``; // let csn = surl.searchParams.get(`category_sn`) || ``; // let fsn = surl.pathname === `/meforms.php` ? surl.searchParams.get(`sn`) : ``; // let wsn = surl.pathname === `/website_content.php` ? surl.searchParams.get(`sn`) : ``; // msn = DAKA_SHARES[msn] || msn || `0`; // psn = !psn || psn.length >= 4 ? psn : `a`.repeat(4 - psn.length) + psn; // ssn = !ssn ? `` : `s${ssn}`; // csn = !csn ? `` : `c${csn}`; // fsn = !fsn ? `` : `f${fsn}`; // wsn = !wsn ? `` : `w${wsn}`; // const ps = [msn, psn, ssn, csn, fsn, wsn].filter(p => p).join(`/`); // // console.log(`ps`, ps); // // const url = `https://im.jznana.com/${msn}/${psn}${qs}`; // const url = `https://im.jznana.com/${ps}`; // // change btn url // shareBtn.setAttribute(`data-clipboard-text-bak`, surl) // shareBtn.setAttribute(`data-clipboard-text`, url) // // change qrcode // const qrcode = document.querySelector(`.share_link_panel .share_link_content .qrcode img`); // if (qrcode) { // qrcode.src = `https://chart.googleapis.com/chart?cht=qr&choe=UTF-8&chs=300x300&chl=${encodeURIComponent(url)}` // } // } // })(); })();
前鏈條設計黑色打底衫,TOORDER,G62327-2086,前鏈條設計黑色打底衫,分類,品牌
G62327-2086
G62327-2086-090-L
TOORDER

前鏈條設計黑色打底衫

TWD $
1,896
4,990
規格 G62327-2086-090-L
數量 訂閱貨到通知

Design

金屬鍊條垂墜裝裝飾,酷颯,黑色,
舒適,修身版型,百搭,
吸睛設計,個性,長袖

Material

面料:29%聚酯纖維67%人棉4%氨綸

 

Size Info

尺寸肩寬胸圍袖長全長
S431086466
M411046264
L391006062
XL37965860

*尺寸因手工測量方式不同,若有2-3cm誤差屬於合理範圍,敬請諒解。

 

 

前鏈條設計黑色打底衫 | JZNANA時尚購物集合

看商品
0