Batch.html
3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%include '../../../common/views/__ui/header'%>
<%include '../../../common/views/__partail/ListHeader'%>
<div class="contentpanel">
<div class="panel panel-default" style="margin-bottom:10px;">
<div class="panel-body">
<table class="table table-bordered">
<tr>
<td rowspan="2">排序</td>
<td>上传EXCEL:</td>
<td style="position: relative;"><input id="sort-file" name="file" data-type="searchSort" type="file" style="cursor: pointer; height: 37px; top: 8px;"></td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、Excel表头为:<span style="color: #67D267;">SKN、模块ID(品牌排序:1、店铺排序:5)、排序值</span><br>
3、第一行为表头内容,第二行开始为正式内容<br>
4、每个文件控制在2500行以内<br>
5、<a href="/ajax/link/searchSort">下载样例</a>
</td>
</tr>
<tr>
<td rowspan="2">品牌款型系列</td>
<td>上传EXCEL:</td>
<td style="position: relative;"><input id="brand-file" name="file" data-type="brandProperty" type="file" style="cursor: pointer; height: 37px; top: 8px;"></td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、Excel表头为:<span style="color: #67D267;">SKN、品牌款型系列名称、类型</span><br>
3、第一行为表头内容,第二行开始为正式内容<br>
4、每个文件控制在500行以内<br>
5、<a href="/ajax/link/brandModelSeries">下载样例</a>
</td>
</tr>
<tr>
<td rowspan="2">批量下架</td>
<td>上传EXCEL:</td>
<td style="position: relative;"><input id="offShelve-file" name="file" data-type="offShelveSkn" type="file" style="cursor: pointer; height: 37px; top: 8px;"></td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、Excel表头为:<span style="color: #67D267;">SKN、操作(下架:1)</span><br>
3、第一行为表头内容,第二行开始为正式内容<br>
4、每个文件控制在500行以内<br>
5、<a href="/ajax/link/offShelveSkn">下载样例</a>
</td>
</tr>
</table>
</div>
</div>
</div>
<%include '../../../common/views/__ui/footer'%>