GMKtec NucBox K15 Mini PC Intel® Core™ Ultra 5 125U

Variant- Barebone (No DDR+No SSD+No OS)
Power Plug Type- US
$359.99
$479.99
-$120.00
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "6cc2da2f-f1fe-45fb-9c20-17edf5a98b0c"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '9c4e6bbb-7119-43b5-97f0-0c17f9ff76b0' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "9c4e6bbb-7119-43b5-97f0-0c17f9ff76b0", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
Quantity
Free Shipping Worldwide (Remote areas excluded)
Hassle-free 7-Day Return
US Orders: No Import Fees
1-Year Warranty
Description
Specifications

Specifications

CPUIntel® Core™ Ultra 5 125U, 12 cores / 14 threads, Intel 4 process, up to 4.3GHz, 12MB Cache; Hybrid architecture with P-Core, E-Core and LP-Core; Silent 15W, Balanced 25W, Performance 35W (peak 35W)
GPUIntel® Graphics GPU, max dynamic frequency 1.85GHz, peak AI performance 7 TOPS (Int8)
NPUIntel® AI Boost, peak AI performance 11 TOPS (Int8)
Memory2×DDR5 SO-DIMM dual-channel 4800 MT/s, 16GB / 32GB pre-installed; up to 96GB supported (DDR5 5600 MT/s)
StorageM.2 2280 PCIe 3.0 SSD, 1TB / 2TB pre-installed
Internal ExpansionUp to 3×M.2 2280 PCIe 4.0×4 SSD slots, max 8TB per slot (total up to 24TB); one slot supports SATA SSD
Graphics OutputHDMI 2.1 ×1 + DP 1.4 ×1 + USB4 ×1 + Type-C ×1, supports simultaneous quad display output
NetworkingWiFi 6E (MediaTek MT7922, RZ616), Bluetooth 5.2, Dual 2.5G LAN (Realtek 8125BG)
PowerDC IN (5.5/2.5mm) 20V / 5A, built-in CMOS battery
Front I/O • 1×USB Type-C (USB 3.2 Gen2, PD 100W input, DP 1.4, 20Gbps)
• 3×USB Type-A (USB 3.2 Gen2, 10Gbps)
• 1×3.5mm audio jack
• Power button with white LED
Rear I/O • 1×HDMI 2.1 (8K@60Hz)
• 1×DP 1.4 (8K@60Hz, DP++)
• 1×USB4 Type-C (40Gbps, PD 100W input, DP 1.4)
• 2×USB 2.0 (480Mbps)
• 2×RJ45 2.5G LAN
• 1×Oculink (PCIe Gen4 ×4, no hot-swap)
• DC IN
OSPre-install Windows 11 Pro, support Linux,Ubuntu
Dimensions154 × 151 × 73.6 mm
WeightApprox. 877g (bare), approx. 2268g (package)
PackageBox size: 360 × 210 × 100 mm; 6 pcs per carton, 440 × 370 × 310 mm, approx. 14.5 kg
Included AccessoriesPower adapter, HDMI cable, VESA mount, Manual, Warranty card
```