商品列表.html
3.19 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" />
<title>YOHO有货后台管理</title>
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/jquery.min.js"></script>
<script type="text/javascript" src="http://static.yohobuy.com/admin/js/imageutitly.js"></script>
</head>
<body>
<div class="mainbox">
<div class="daohang">当前位置:<a href="main.html">首页</a> > <span>商品列表</span></div>
<div class="lan">
<ul>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td style="width:200px;">商品名称:裤子</td>
<td >
<button type="button" class="but6" >增加商品</button></td>
</tr>
</table>
</ul>
</div>
<table class="table1" style="width: 100%;text-align:center;">
<thead>
<tr>
<th align="center">商品码</th>
<th align="center">商品名称</th>
<th align="center">ERP商品号</th>
<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="9"><button class="but1">增加商品</button> <button class="but1">提交</button></td>
</tr>
</tfoot>
<tr onmouseover="this.className='list-over';" onmouseout="this.className='';">
<td><input type="text" value="" style="width:80px;" /></td>
<td><input type="text" value="" style="width:80px;" /></td>
<td><input type="text" value="" style="width:80px;" /></td>
<td><select name="">
<option>请选择</option>
<option>蓝色</option>
<option>红色</option>
</select></td>
<td><input type="text" value="蓝色" style="width:80px;" /></td>
<td><input type="text" value="#FF0000" style="width:80px;" /></td>
<td><button class="but2">浏览</button></td>
<td><input type="text" style="width:80px;" /></td>
<td><button class="but2" >删除</button></td>
</tr>
<tr class="F1" onmouseover="this.className='list-over';" onmouseout="this.className='F1';">
<td><input type="text" value="" style="width:80px;" /></td>
<td><input type="text" value="" style="width:80px;" /></td>
<td><input type="text" value="" style="width:80px;" /></td>
<td><select name="">
<option>请选择</option>
<option>蓝色</option>
<option>红色</option>
</select></td>
<td><input type="text" value="蓝色" style="width:80px;" /></td>
<td><input type="text" value="#FF0000" style="width:80px;" /></td>
<td><button class="but2">浏览</button></td>
<td><input type="text" style="width:80px;" /></td>
<td><button class="but2" >删除</button></td>
</tr>
</table>
</div>
</body>
</html>