模特管理.html
2.89 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
<!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> > <span>模特管理</span></div>
<div class="lan-tab">
<ul>
<li class="act" onclick="window.location.href='模特管理.html'">新增模特</li>
<li onclick="window.location.href='模特列表.html'">模特列表</li>
<li onclick="window.location.href='分配模特.html'">分配模特</li>
</ul>
</div>
<table class="table1" style="width: 100%;">
<thead>
<tr>
<th colspan="2">
新增模特
</th>
</tr>
</thead>
<tr>
<td>
模特名字
</td>
<td>
<input id="txtmodelname" type="text" />
</td>
</tr>
<tr>
<td>
模特性别
</td>
<td>
<select id="sltmodelsex">
<option value="1">男</option>
<option value="2">女</option>
</select>
</td>
</tr>
<tr>
<td>
模特图片
</td>
<td>
<span class="font_red">上传图片大小为600*145</span><br />
<input id="txtmodelimg" type="text" />
<button type="button" class="but2" >
浏览</button>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<button type="button" class="but1">保存</button>
</td>
</tr>
</table>
</div>
</body>
</html>