Scooter

44 sold
$49.99
$79.67
-37%
Versions:  Standard version (can travel 25km range)
Quantity

Description

SPECS

  • Motor: 2,000 watt rated power BLDC dual hub motor
  • Battery: 84 volt - 60 Ah - 5,040Wh - LG main pack with a 12 volt - 16 Ah - 192Wh stem battery for lighting and accessories
  • Max mileage: 105 miles (mileage may vary depending on rider weight, road conditions, and ambient temperature)
  • Max Speed: Up to 55+ mph (depending on rider weight, road conditions, state of charge, and ambient temperature)
  • Braking System: 4 Piston Hydraulic brakes with ABS standard and 160mm disks
  • Scooter Weight: 183 lbs
  • Product Material: Frame and Handle are aviation grade 6082-T6 aluminum alloy, the shaft is SCM440 steel, and plastic covers

LCD DISPLAY

  • Gear Setting (1-5)
  • Password Setup
  • Speed Unit (km/h, mp/h)
  • Kick Start (Off / On)
  • Speed Limitation (5 to 100%)
  • Motor Torque (50% / 75% / 100%)
  • EBS (0-5)
  • Backlight Brightness  (0-5)
  • Automatic Shutdown (1-30 mins)
  • Automatic Safe Mode (0-300s)
  • ABS (Off / On)
  • Wheel Diameter (5-26 in, set at 13 in)
  • System Voltage (36-84V, set at 84 V)
  • Motor Magnets (5-30, set at 15)
  • FREQUENT QUESTIONS

    Q1. What are your packaging conditions?
    A: Generally, we pack our products in neutral white boxes and brown cartons. If you have a legally registered patent,  
    we can pack the products in your brand boxes after receiving your authorization letters.

    Q2. What are your payment terms?
    A: One-time payment, the promotional vehicle is only $69.

    Q3. And the delivery time?
    A: Generally, it will take 1 to 3 days after receiving your advance payment. The specific delivery time depends
    on the items and quantity of your order.

    Q4. Do you test all your products before delivery?
    A: Yes, we have 100% test before delivery

    Q5: How to make our business long term and good relationship?
    A:1. We maintain good quality and competitive price to ensure our customers benefit from it;
    2. We respect every customer as our friend and sincerely do business and make friends with them
    no matter where they come from.

    Our company specializes in  the manufacture and export of ATVs, motorcycles, karts, Electric Mobility  scooter etc. With 3 factories, we can offer a wide range of products. The key to our success is good quality and the best services. 

    5-year warranty ensures high quality


    🏪Certified merchants in good standing.
    👍Facebook officially recommends high-quality merchants.
    💵The merchant deposit of USD 100,000.
    ✅Support global credit card payment.
    🔒Google SSL security certificate guarantees your privacy.
    🛫Global super fast air transportation.

    WHY US?

    • We work directly with manufacturers all over the world to ensure the best quality of our products. We have Quality Control department which help us to keep our promise!
    • Price is always competitive.
    • Awesome Customer Service
    • Amazing products along with High Quality
    • Read reviews from our lovely customers
    🌎 Worldwide Shipping ✈  
    Please do note that shipping is insured and requires multiple working days..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! 😉

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.