Batch.html
5.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<%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>
<tr>
<td rowspan="2">批量上架</td>
<td>上传EXCEL:</td>
<td style="position: relative;">
<input id="onShelve-file" name="file" data-type="onShelveSkn" type="file" style="cursor: pointer; height: 37px; top: 8px;">
</td>
</tr>
<tr>
<td>说明:</td>
<td colspan="2">
1、<span style="color:red;">不支持</span>预操作(预售|预上架)<br>
2、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
3、Excel表头为:<span style="color: #67D267;">SKN</span><br>
4、第一行为表头内容,第二行开始为正式内容<br>
5、每个文件控制在500行以内<br>
6、<a href="/ajax/link/onShelveSkn">下载样例</a>
</td>
</tr>
<tr>
<td rowspan="2">批量修改商品促销短语</td>
<td>上传EXCEL:</td>
<td style="position: relative;">
<input id="phrase-file" name="file" data-type="productPhrase" 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、每个文件控制在1000行以内<br>
5、<a href="/ajax/link/productPhrase">下载样例</a>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- 不能再丢了 要吐血了-->
<div class="panel panel-primary-head">
<div class="panel-body red" id="message">
</div>
</div>
<%include '../../../common/views/__ui/footer'%>