Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
web_flea_market
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HuangJunbo
web_flea_market
Commits
29140a4d
Unverified
Commit
29140a4d
authored
Nov 29, 2022
by
qishui233
Committed by
GitHub
Nov 29, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
消费记录,发布商品,修改商品的页面
parent
42773f45
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
154 additions
and
0 deletions
+154
-0
add_product.html
flea_market/add_product.html
+43
-0
style.css
flea_market/css/style.css
+6
-0
edit_product.html
flea_market/edit_product.html
+43
-0
purchase_history.html
flea_market/purchase_history.html
+62
-0
No files found.
flea_market/add_product.html
0 → 100644
View file @
29140a4d
<!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>
版权所有
©
uuo00_n-team
</p>
</footer>
</body>
</html>
\ No newline at end of file
flea_market/css/style.css
0 → 100644
View file @
29140a4d
body
{
background-color
:
#f1f1f1
;
font-size
:
14px
;
font-family
:
'宋体'
,
sans-serif
;
font-style
:
normal
;
}
\ No newline at end of file
flea_market/edit_product.html
0 → 100644
View file @
29140a4d
<!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>
版权所有
©
uuo00_n-team
</p>
</footer>
</body>
</html>
\ No newline at end of file
flea_market/purchase_history.html
0 → 100644
View file @
29140a4d
<!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>
版权所有
©
uuo00_n-team
</p>
</footer>
</body>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment