Nueva tablet Android Pro 14, 16 GB + 1 TB, con SIM y Wi-Fi, solo quedan 20 a precio rebajado

Los primeros 200 clientes recibirán un teclado + bolígrafo original de regalo.

€60.00  - €75.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 = "8fd1618e-36fa-44ce-9037-9cf73542a17d"; // 促销活动数据 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"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 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 == 'a4284f0f-1e98-4913-9c34-a7964f336d1a' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "a4284f0f-1e98-4913-9c34-a7964f336d1a", 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);
Color:  violeta
Configurar:  SIM+WLAN 12 GB+256 GB
Regalo:  Teclado magnético inteligente + lápiz
Quantità
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Descrizione

Dado que lanzaremos el producto al mismo tiempo que la conferencia de prensa, lanzaremos una cantidad limitada de 500 tabletas a un precio especial para que todos puedan usarlas.

Esta tableta impresiona por su diseño extremadamente flexible y garantiza un disfrute visual. La relación pantalla-cuerpo de hasta el 94 % garantiza un disfrute visual prácticamente infinito en la pantalla gigante, mientras que la proporción áurea de 3:2 garantiza un aprovechamiento completo de la tecnología de pantalla y transiciones de sombras fluidas. Los detalles hacen que la experiencia cinematográfica sea cautivadora.

La enorme pantalla es muy impresionante.

Equipado con una pantalla de alta calidad con alta resolución y colores brillantes, es adecuado para ver videos o editar imágenes.

Al enfatizar la conectividad de dispositivo a dispositivo, se puede conectar sin problemas con otros dispositivos inteligentes para mejorar la eficiencia del trabajo.

Incluyendo, entre otras cosas, función de colaboración en múltiples pantallas, soporte de software de oficina eficiente y otras funciones especiales, es muy adecuado para gente de negocios y trabajadores creativos.

Equipada con una pantalla de alta calidad con colores vibrantes, es ideal para ver videos o editar fotos. Además, es compatible con la función de lápiz, lo que ofrece a los usuarios más opciones creativas.

Es un verdadero deleite para la vista. La pantalla está recubierta con una capa nanoóptica controlada magnéticamente que no solo parece transparente, sino que también reduce eficazmente el deslumbramiento. Gracias a la tecnología de detección de luz natural, la imagen muestra colores brillantes y oscuros incluso con mucha luz, sin perder detalle ni siquiera en la oscuridad. El dispositivo también cuenta con la certificación profesional Rheinland Global Eye Protection 3.0, lo que lo hace cómodo de usar y ofrece una protección ocular completa.

La cámara frontal de 16 megapíxeles garantiza una imagen espectacular al tomar fotos y videos. Gracias al sensor de profundidad ToF, ubicado cerca de la pantalla, el AOD 31 se ilumina al instante. Activa Shadow Follower 32 y mantente en el centro del encuadre al chatear en línea, incluso con movimiento.

Admite carga ultrarrápida de 88 W, lo que le permite cargarse al 85 % en 40 minutos y al 100 % en 65 minutos. Además, cuenta con una batería extragrande de 10100 mAh6, que te permite ver películas en casa o trabajar al aire libre sin interrupciones.

Configuración especial: • Pantalla: La pantalla OLED flexible de 10 pulgadas tiene una relación pantalla-cuerpo ultraalta del 94 %.
• Memoria y almacenamiento: Hay varias combinaciones de memoria disponibles, como la versión de 12 GB de RAM + 256 GB de ROM.
• Opciones de color: Disponible en colores como Roland Purple.
• Accesorios: Compatible con teclado magnético inteligente y lápiz óptico.
• Carga: Admite carga ultrarrápida de 88 W.
• Modo multimedia: Tiene potentes capacidades de procesamiento multimedia.
• Tecnología de conectividad: Utiliza la tecnología de conectividad completa Star Flash, respetuosa con el medio ambiente, una nueva tecnología de comunicación inalámbrica desarrollada para proporcionar conectividad de bajo consumo y largo alcance.