快速了解独立站的基本政策
收藏课程
取消收藏
2 mins / By SHOPLAZZA Learn
收藏课程
取消收藏

危机亦是转机,亚马逊封号之殇,是跨境电商通过自查和整改逐渐过渡到良性有序竞争的良好时机。

开展网站零售业务之前,建议你了解一下平台的各项政策。合规是跨境电商经营的基石,越是在震荡的时代,越凸显出重要性。shoplazza为广大商家提供一个安全稳定的跨境电商平台,当然也提出相应的合规要求,了解并遵守这些规范要求或许会增加跨境电商征途的难度,却能让我们一起走得更远。

 

  • 0:00:12 在开展你的网站零售业务之前,我真诚的建议你了解一下平台的各项政策。什么是可以做的,什么是不能做的。这将决定你的生意能做多大、多远。首先,请选择一个良性的业务,这很重要,任何生意都不能超越道德和法律准则。换句话说,你的商品必须遵守所有适用的法律。这里要着重提醒你,不同国家地区的法律差异较大,在开展业务之前,一定要认真的做做功课。如果商品情况比较特殊,我建议你咨询当地律师或求助其他专业人士。
  • 0:00:50 其次,店匠作为一个全球性的建站平台,对商家也有一定的要求。Shoplazza的禁止行为有:①侵犯他人知识产权②恶意欺诈行为③泄露个人隐私或其他应予保护信息的行为④骚扰信息⑤枪支弹药、爆炸物、违禁药品等产品
  • 0:01:15 如何让自己的生意变得良性,可持续发展呢?Shoplazza给你一些建议:①完整且真实的描述商品,让消费者明确的了解商品细节,以作出自主的判断。②获得订单后快速响应和交付,网购的体验跟等待收货的时间成反比。让消费者少一天等待,你的业务也就更进一分。③客观、友好的处理售后问题,前来售后的消费者本身已经存在不满,合理而有温度的安抚,并给出最大的处理诚意,能有效的解决问题。④公示真实的企业信息,而不是隐瞒它。这一点也关系到你支付和广告等工作的稳定性。
课程评论

看看学员怎么说

发表评论
顾客评论
已到底部
最新评价时间
按点赞数从大到小
按评分从高到低
按评分从低到高
×
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.