VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack
VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack

VRIGOO Vintage Casual Canvas Shoulder Laptop Backpack

Outdoor Sports School Travel Bag for Men & Women
Vendor by: VRIGOO
$59.99
$59.99
-0%
Color-Dark Grey
Please select a color
Quantity
Premium Quality Materials
100% Secure Checkout
30-Day Money-Back Guarantee
Package Tracking is available
Shipping

About this Item

  • This vintage canvas backpack is classic, it shows you outstanding temperament. With zipper design for the main compartment to tight well. Its magnet closure makes the back pack very easy to open and close.
  • You can also use it as a laptop backpack, with padded laptop sleeve, it could fit 15.6" computer. Perfect backpack for school, work, daily use and travel.
  • There are multiple interior pockets to keep your little things organized, like wallet, keys, iPad, tablet, glasses, cell phone, water bottle, umbrella, clothes, books, school or other supplies.
  • Material: soft canvas and genuine leather feels very comfortable to wear and a nice touch, the canvas material won't rip or tear, the shoulder straps are extendable and padded for comfort.
  • Size:12.6 x 3.94 x 15.35 inches (W x D x H), which is bigger than other rucksack of the same style. Idea daypack for camping, travel, shopping, hiking, climbing, vintage backpack for men and women. Please allow little color difference due to camera or light environment.


SPECIFICATIONS

Condition: 100% New with high quality

Material: 16 oz washing canvas

Backpack Dimensions: 12.6 x 3.94 x 15.35 inches / 32 x 10 x 39 cm (W X D X H)

Weight: 1.12 kg / 39.5 oz

Color Variety: Army Green / Grey / Khaki / Lake Green / Rose Red


PACKAGE INCLUDED

  • 1 x Canvas Backpack


WARM TIPS

  • There might be slightly difference in color, because of the computer monitor settings.
  • With the difference in the measurement method, please allow 1-3cm in size deviation (1cm=0.39 inch).Thank you for understanding!


PRODUCT DETAILS

The shipping time begins from the date you placed your order. It usually takes 1 to 5 business days to process your order. Once we've processed it, we can then ship it. We'll send you a notification email with shipping and tracking information once it's dispatched. You'll then be able to track your parcel's journey to your front door.

We currently offer two shipping speeds within the most Countries:

  • Standard Shipping option which takes about 7-25 business days to arrive and the carrier will be automatically selected based on the shipping address.
  • Additionally, we offer 3-8 business days Expedited Shipping starting at US$19 and plus additional weight charge is automatically calculated based on each selected product. The final price for both of these options will be given at checkout and is determined by order volume and final destination.


*Receiving time = Processing time + Shipping time (Business days)

Additional Information

  • We only ship and deliver from Monday to Friday (Excluding weekends and holidays) and that all orders placed will be arranged to be issued until 3 am ET.
  • All delivery times are estimates and Vrigoo is not responsible for delays due to unpredictable factors (weather, delivery carrier factors, customer error, holiday-related delays) or any other unforeseen factors.
  • After the item is shipped, you can get tracking information in order details and then follow the guideline to check the shipping status.

For more information about delivery, please view our Shipping Policy.

30-Day Money-Back Guarantee

We offer refunds on unused item(s) in good condition. You have 30 days, from the day you received order, to submit a return and refund request.

When you receive item(s) that is defective, incorrect, or incomplete, please contact us immediately so we can make it right. Once we accept your return request, our customer service will be in touch to start processing your request within 5 working days. Then you can post the item back to us.

If you return the item(s) for personal reasons, the return freight is at your expense. Please note that products must be returned in the original packaging and will not affect the second sale. Once the item arrives back at the warehouse for inspection, the refund process will begin.

Hassle-Free Exchange

A hassle-free exchange is ready if it is in stock. You can exchange your item(s) within 24 hours you placed the order and before your package was shipped out. If your package has been shipped out, we will not accept your replacement request, but you can refuse to accept the package when it arrive.

How do I cancel an order?

For canceling an order which has not been processed, please contact us as soon as possible. Orders whose parcels have already been processed can not be canceled.


For more information, please view our Returns Policy.

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.
  • Fast Delivery

    Free shipping on orders over $49

  • Payment Security

    Secure transactions using PayPal

  • Buyer Protection

    30-Day Money-Back Guarantee

  • Customer Support

    Need help? Assistance Mon-Fri