Batch.html
1.79 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
<%include '../../common/__ui/header'%>
<%include '../../common/__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">批量生成SKN链接</td>
<td>上传EXCEL:</td>
<td >
<div class="panel-col" style="position: relative;">
<input id="batchLinkSkn" name="file" data-type="batchLinkSkn" type="file" style="cursor: pointer; height: 37px; top: 8px;">
</div>
</td>
</tr>
<tr>
<td>说明:</td>
<td colspan="3">
1、上传文件必须是<span style="color:red;">.xlsx</span>文件<br>
2、第一行标题栏:<span style="color: #67D267;">SKN</span><br>
3、<a href="/ajax/link/batchSknLink" style="margin: 0; text-decoration: underline">下载样例.xlsx</a>
</td>
</tr>
<tr>
<td>url类型</td>
<td>
<label>url类型<span style="color:red">*</span></label>  
<label class="radio-inline"><input type="radio" name="urlType" value="1" >http</label>
<label class="radio-inline"><input type="radio" name="urlType" value="2" checked>https</label>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="panel panel-primary-head">
<div class="panel-body red" id="message">
</div>
</div>
<%include '../../common/__ui/footer'%>