2019-09-06 23:53:10 +08:00

61 lines
2.5 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{extend name="default/shops/base" /}
{block name="title"}数据导入 - 卖家中心{__block__}{/block}
{block name="css"}
<link rel="stylesheet" type="text/css" href="__STATIC__/plugins/webuploader/webuploader.css?v={$v}" />
{/block}
{block name="content"}
<div class="wst-body">
<div class="wst-shop-head"><span>数据导入</span></div>
<table class="table table-hover table-striped table-bordered wst-form">
<tr>
<td colspan='2' style='color:#707070;padding-left:25px;padding-top:5px;'>
<div class='wst-tips-box' style='margin-top:10px;'>
<div class='icon'></div>
<div class='tips' >
1.请确保商品价格必须大于0否则将自动默认为0.01。<br/>
2.请确保商品库存不能为负数否则将自动默认为0。<br/>
3.请勿重复上传, 否则将造成重复商品数据。<br/>
4.请保证导入的数据在Excel的第一个工作表(Sheet)。<br/>
5.若Excel上某一行第一列为空则代表商品数据导入完毕。<br/>
6.若没有数据模板,请点击<a href='__STATIC__/template/goods.xls' style='color:blue;' target='_blank'>下载Excel模板</a><br/>
7.推荐使用谷歌浏览器或者火狐浏览器Firefox以获得更佳体验。<br/>
</div>
<div style="clear:both"></div>
</div>
</td>
</tr>
<tr>
<th align='right' width='90'>商品数据:</th>
<td>
<div id="filePicker" style='margin-left:0px;'>导入商品数据</div>
</td>
</tr>
</table>
</div>
{/block}
{block name="js"}
<script type='text/javascript' src='__STATIC__/plugins/webuploader/webuploader.js?v={$v}'></script>
<script>
var uploading = null;
$(function(){
var uploader = WST.upload({
server:"{:url('home/imports/importGoods')}",pick:'#filePicker',
formData: {dir:'temp'},
callback:function(f,file){
layer.close(uploading);
uploader.removeFile(file);
var json = WST.toJson(f);
if(json.status==1){
uploader.refresh();
WST.msg('导入数据成功!已导入数据'+json.importNum+"条", {icon: 1});
}else{
WST.msg('导入数据失败,出错原因:'+json.msg, {icon: 5});
}
},
progress:function(rate){
uploading = WST.msg('正在导入数据,请稍后...');
}
});
});
</script>
{/block}