Unverified Commit 29140a4d authored by qishui233's avatar qishui233 Committed by GitHub

消费记录,发布商品,修改商品的页面

parent 42773f45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>发布商品</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header>
<h1>跳蚤市场LOGO</h1>
<nav>导航: 首页 注册 登录</nav>
<hr>
</header>
<aside>
<ul>
<li><a href="edit_pwd.html">修改密码</a></li>
<li><a href="edit_contact.html">修改联系方式</a></li>
<li><a href="my_orders.html">我的订单</a></li>
<li><a href="my_product.html">我的商品</a></li>
<li><a href="purchase_history.html">消费记录</a></li>
</ul>
<ul>
<li><a href="add_product.html">发布商品</a></li>
</ul>
<form action="#" method="get">
商品名称:<input type="text" name="name"><br>
价格:<input type="text" name="price"><br>
描述信息:<textarea cols="30" rows="5" name="description"></textarea><br>
图片:<input type="file" name="picture"><br>
视频:<input type="file" name="video"><br>
<input type="submit" value="发布商品">
<input type="reset" value="取消">
</form>
</aside>
<footer>
<hr>
<p>版权所有&copy;uuo00_n-team</p>
</footer>
</body>
</html>
\ No newline at end of file
body{
background-color: #f1f1f1;
font-size: 14px;
font-family: '宋体',sans-serif;
font-style: normal;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>修改商品</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header>
<h1>跳蚤市场LOGO</h1>
<nav>导航: 首页 注册 登录</nav>
<hr>
</header>
<aside>
<ul>
<li><a href="edit_pwd.html">修改密码</a></li>
<li><a href="edit_contact.html">修改联系方式</a></li>
<li><a href="my_orders.html">我的订单</a></li>
<li><a href="my_product.html">我的商品</a></li>
<li><a href="purchase_history.html">消费记录</a></li>
</ul>
<ul>
<li><a href="add_product.html">发布商品</a></li>
<li><a href="edit_product.html">修改商品</a></li>
</ul>
<form action="#" method="get">
商品名称:<input type="text" name="name" value="ipad"><br>
价格:<input type="text" name="price" value="¥1300.00"><br>
描述信息:<textarea cols="30" rows="5" name="description">XXX商品描述</textarea><br>
图片:<input type="file" name="picture"><br>
视频:<input type="file" name="video"><br>
<input type="submit" value="修改商品">
<input type="reset" value="取消">
</form>
</aside>
<footer>
<hr>
<p>版权所有&copy;uuo00_n-team</p>
</footer>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<h1>跳蚤市场LOGO</h1>
<nav>导航: 首页 注册 登录</nav>
<hr>
</header>
<aside>
<ul>
<li><a href="edit_pwd.html">修改密码</a></li>
<li><a href="edit_contact.html">修改联系方式</a></li>
<li><a href="my_orders.html">我的订单</a></li>
<li><a href="my_product.html">我的商品</a></li>
<li><a href="purchase_history.html">消费记录</a></li>
</ul>
</aside>
<article>
<table border="1">
<tr>
<th>订单号</th>
<th>商品信息</th>
<th>实付款</th>
<th>时间</th>
<th>状态</th>
<th>操作</th>
</tr>
<tr>
<td>33276842401</td>
<td>
《C语言程序设计》
</td>
<td>$55.20</td>
<td>2019-3-30 00:07:22</td>
<td>交易成功</td>
<td>
<a href="">商品详情</a>
<a href="">删除</a>
</td>
</tr>
<tr align="right">
<td colspan="6">
<a href="#">第一页</a>
<a href="#">上一页</a>
<a href="#">下一页</a>
<a href="#">末页</a>
</td>
</tr>
</table>
</article>
<footer>
<hr>
<p>版权所有&copy;uuo00_n-team</p>
</footer>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment