⚡10 PRO 72v Dual Motor Electric Scooter

2 sold
people are viewing this right now
Shipping
$39.99
$301.00
-$261.01
Color:  Red
Size:  960Wh
Quantity
Description
🔥 The price is limited! 🔥 Grab yours as the limited promotion available

🌈Processing time >> Shipping within 1 days of receiving your payment.
💖Free three-year product warranty
✅Guarantee>> We have a a risk-free 90-day guarantee
🎯Tracking number for every order, click here to track your parcel.
🎁 99.6% of Reviewers Recommends This Product.

1500W X 2 HUB MOTOR
The dual 1500W wheel-set motors on the wheels can provide a peak power output of 4000W, which can provide stronger acceleration and climbing ability whether in urban or off-road landscapes.




LG 72V 24AH BATTERY

The 960Wh large capacity lithium battery delivers steady power output and an ultra-long range of 60 miles.
It only takes 4 hours to fully charge with two 168W high-power adapters.



PMT 10 X 3.0 ROAD TIRES COMFORTABLE, SAFER RIDE​
PMT is a leader in tire specialty. With 30 years of experience, PMT has become a reference point for two-wheel enthusiasts. A wide range of products caters to those who want competition-grade tires for the road.


DUAL HYDRAULIC BRAKE
Dual hydraulic brake plus eABS system ensures you a safe and smooth sudden brake.
More powerful, more effortless braking and longer lifespan. The sealed System works well in any riding conditions.



DUAL SHOCK ABSORPTION
The dual shock absorber system effectively reduces vibration and bumps during riding, bringing you a better riding experience.



FOLD FOR STORAGE
It is made of high-strength aviation-grade aluminum alloy and equipped with more comfortable tires. Which is easy to carry when traveling.




PERSONALIZED COLOR SCHEMES
By breaking the dullness, its striking appearance adds beauty to your life at all times and wherever you go.



GEOMETRY



WHAT'S IN THE BOX
10 Pro E-scooter x 1
10 Pro Charger  x 1
NFC Card x 2
Multi-Function Tool Kits x 1
10 Pro Product’s Manual x 1
Deck Frosted Sticker x 2

Insured Worldwide Shipping: Each Order Includes Real-Time Tracking Details And Insurance Coverage In The Unlikely Event That A Package Gets Lost Or Stolen In Transit.
 
Money-Back Guarantee: If Your Items Arrive Damaged Or Become Defective Within 90 Days Of Normal Usage, We Will Gladly Issue Out A Replacement Or Refund.
 
24/7 Customer Support: We Have A Team Of Live Reps Ready To Help And Answer Any Questions You Have Within A 24-Hour Time Frame, 7 Days A Week.
 
Safe & Secure Checkouts: We Use State-Of-The-Art SSL Secure Encryption To Keep Your Personal And Financial Information 100% ProtectedRETURN & WARRANTY
 
100% Secure Payment With SSL Encryption.
If You’re Not 100% Satisfied, Let Us Know And We’ll Make It Right.
 
Please do note that shipping is insured and takes 3-7 days worldwide. However, you may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for! ?
🔒 100% Risk-Free Purchase 🔥
 
🔥BUY MORE SAVE MORE🔥
 
Click on "ADD TO CART" to get yours now!



OUR GUARANTEE
 
Our products have high quality standards that will give you the best value for your money.
 
We do realize that online shopping can be troubling, that's why we are committed to give you an assurance that after you made the purchase and you are not happy with the item, we'll make it right because we value you as our loyal customer. We will take the necessary actions to ensure you are 100% satisfied. Buy it, try it and let us know what you think.
 
Free Insured Shipping Worldwide
Tracking Number For Every Orde



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.