YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
8/10
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y
8/10

YONZEE Tesla Phone Holder Cell Phone Electric Bracket For Tesla Model 3/Y

$59.99
$59.99
94 sold
ColorIntegrated PRO Electric Stand
Please select a color
Quantity
Weight: 150g

Installation instructional video

Brand: YZ
Style: Modern style modern light luxury high-end
Applicable position: Air outlet - Dashboard
Model number: MODELY/3 Electric phone stand
Installation method: Snap type
Suitable for :. General purpose
Function: Electric clamping
Maximum output power: 43W

About this item

  • Newly upgraded integrated wireless electric stand The horizon is in front of you

  • OBD 43W fast charging head can be directly connected to mobile phone charging Hidden wiring does not take up space, dual ports 43W fast charge output

  • Two bases for your choice You can choose different bases according to your habits, the one that suits you is the best

  • The entire air outlet can be placed Navigate to watch the drama without delay, giving you a better experience

  • Customized special bracket base based on Model 3/Y central control, made of silicone material, which does not damage the central control

  • Easy to install and stable
  • The original car data is opened, the edges are seamlessly fitted, and the buckle design does not hurt the 
  • Reserved data line port, hidden design bid farewell to cluttered interior environment
  • The base is reserved for the air outlet design, which does not affect the air outlet of the original car air conditioner
  • Safe vision, not blocking the line of sight Avoid the steering wheel, the view is not blocked

  • Small and stable, the pursuit of exquisite choice Newly upgraded all-in-one Pro electric stand

  • Once fully charged, it can be used for 3 months Based on 10 uses per day, 1 full charge can last for 3 months

Name: New upgraded integrated PRO electric support
Material: Aluminum alloy +ABS
Installation position: Instrument table
Applicable model: The new Model3/Y
Color: Deep space ash
Applicable equipment: 4.7-6.8 inch phone

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.