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
f1fb510a
Commit
f1fb510a
authored
Nov 30, 2022
by
HuangJunbo
💻
Committed by
Administrator
Nov 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
创建支付页面并添加CSS样式
Signed-off-by:
Administrator
<
admin@example.com
>
parent
ac3a55a9
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
75 additions
and
7 deletions
+75
-7
add_product.html
flea_market/add_product.html
+0
-2
style.css
flea_market/css/style.css
+22
-0
edit_product.html
flea_market/edit_product.html
+0
-2
edit_pwd.html
flea_market/edit_pwd.html
+1
-0
index.html
flea_market/index.html
+1
-0
login.html
flea_market/login.html
+1
-0
pay.html
flea_market/pay.html
+43
-0
place_order.html
flea_market/place_order.html
+1
-0
product_detail.html
flea_market/product_detail.html
+1
-1
product_list.html
flea_market/product_list.html
+1
-0
product_search.html
flea_market/product_search.html
+1
-0
purchase_history.html
flea_market/purchase_history.html
+1
-2
register.html
flea_market/register.html
+1
-0
user_center.html
flea_market/user_center.html
+1
-0
No files found.
flea_market/add_product.html
View file @
f1fb510a
...
...
@@ -2,8 +2,6 @@
<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>
...
...
flea_market/css/style.css
View file @
f1fb510a
...
...
@@ -81,3 +81,25 @@ article table {
background
:
#f1f5F8
;
}
#pay_order
{
height
:
200px
;
margin
:
10px
;
}
#pay_type
{
float
:
left
;
width
:
430px
;
height
:
200px
;
margin
:
10px
;
}
#pay_info
{
float
:
left
;
width
:
430px
;
height
:
200px
;
margin
:
10px
;
}
.clear
{
clear
:
both
;
}
flea_market/edit_product.html
View file @
f1fb510a
...
...
@@ -2,8 +2,6 @@
<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>
...
...
flea_market/edit_pwd.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
edit_pwd
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/index.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
首页
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/login.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
login
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/pay.html
0 → 100644
View file @
f1fb510a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
支付
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
<h1>
跳蚤市场Logo
</h1>
<nav>
导航:首页 注册 登录
<a
href=
"user_center.html"
>
用户XXX
</a>
</nav>
<hr/>
</header>
<article>
<section
id=
"pay_order"
>
<h3>
待支付订单
</h3>
订单号:2017010101
<br>
共1件商品 应付金额:¥1305(含运费5.00元)
</section>
<section
id=
"pay_type"
>
<h3>
支付方式:
</h3>
<input
type=
"radio"
name=
"pay_type1"
/>
银行卡
<input
type=
"radio"
name=
"pay_type2"
/>
微信支付
<input
type=
"radio"
name=
"pay_type3"
/>
支付宝
<input
type=
"radio"
name=
"pay_type4"
/>
货到付款
</section>
<section
id=
"pay_info"
>
<h3>
支付
</h3>
<form
action=
""
>
账号:
<input
type=
"text"
name=
"account"
/><br>
密码:
<input
type=
"password"
name=
"pwd"
/><br>
<input
type=
"submit"
value=
"确认支付"
/>
</form>
</section>
</article>
<footer>
<hr>
<p>
版权所有
©
uuo00_n-team
</p>
</footer>
</body>
</html>
\ No newline at end of file
flea_market/place_order.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
下订单
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/product_detail.html
View file @
f1fb510a
...
...
@@ -3,7 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
商品详细
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/product_list.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
商品分类列表
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/product_search.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
搜索商品
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/purchase_history.html
View file @
f1fb510a
...
...
@@ -2,9 +2,8 @@
<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>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/register.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
register
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
flea_market/user_center.html
View file @
f1fb510a
...
...
@@ -3,6 +3,7 @@
<head>
<meta
charset=
"UTF-8"
>
<title>
user_center
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
>
</head>
<body>
<header>
...
...
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