抵扣券密码.html
2.63 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="http://static.yohobuy.com/admin/css/style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jquery.min.js"></script>
<link type="text/css" href="http://static.yohobuy.com/admin/js/jqueryui/themes/ui-lightness/jquery-ui-1.8.7.custom.css" rel="stylesheet" />
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jqueryui/ui/jquery-ui-1.8.7.custom.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jqueryui/ui/i18n/jquery.ui.datepicker-zh-CN.js"></script>
<script type="text/javascript">
$(function() {
$( "#datepicker" ).datepicker();
$( "#datepicker2" ).datepicker();
});
</script>
<title>YOHO有货后台管理</title>
</head>
<body>
<div class="mainbox">
<div class="daohang">当前位置:<a href="main.html">首页</a> > <a href="#">促销方案</a> > <span>抵扣券密码</span></div>
<table class="table1" style="width:100%;">
<tr>
<td style="width:10%;">固定前置密码</td>
<td><input id="opwd" type="text" /></td>
</tr>
<tr>
<td style="width:10%;">密码位数</td>
<td><input id="pwdlen" type="text" style="width:50px;" /></td>
</tr>
<tr>
<td style="width:10%;">领取时间</td>
<td>
开始时间:<input id="datepicker" type="text" value="2011-01-14" /><br />
结束时间:<input id="datepicker2" type="text" value="2011-02-14" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<button class="but1" type="button" >生成密码</button>
</td>
</tr>
</table>
<table class="table1" style="width:100%;text-align:center;">
<thead>
<tr>
<th align="center">编号</th>
<th align="center">密码</th>
<th align="center">开始领用时间</th>
<th align="center">结束领用时间</th>
<th align="center">添加时间</th>
<th align="center">操作</th>
</tr>
</thead>
<tfoot><tr><td colspan="11"></td></tr></tfoot>
</table>
</div>
</body>
</html>