Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
sf
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f38aa456
authored
Dec 27, 2018
by
qiaomu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
two
parent
d6f3f192
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
278 additions
and
45 deletions
sudoke/css/index.css
sudoke/css/index.less
sudoke/gatheringInfo.html
sudoke/img/gatheringInfo.svg
sudoke/index.html
sudoke/wxkiting.html
sudoke/css/index.css
View file @
f38aa456
...
...
@@ -98,7 +98,13 @@
text-align
:
center
;
color
:
#999
;
}
.wxkiting
.black-bg
{
.wxkitingSuccess
.wxkitingSuccess-img
{
display
:
block
;
width
:
6rem
;
margin
:
0
auto
;
margin-top
:
1rem
;
}
.black-bg
{
width
:
100%
;
height
:
100%
;
position
:
fixed
;
...
...
@@ -107,7 +113,7 @@
background
:
rgba
(
0
,
0
,
0
,
0.7
);
display
:
none
;
}
.
wxkiting
.
black-bg
.alert_info
{
.black-bg
.alert_info
{
font-size
:
0.4rem
;
display
:
inline-block
;
min-width
:
3rem
;
...
...
@@ -122,7 +128,7 @@
border-radius
:
0.15rem
;
padding
:
0.05rem
0.2rem
;
}
.
wxkiting
.
alert
{
.alert
{
font-size
:
0.4rem
;
display
:
none
;
min-width
:
3rem
;
...
...
@@ -138,9 +144,65 @@
padding
:
0.05rem
;
color
:
#fff
;
}
.wxkitingSuccess
.wxkitingSuccess-img
{
display
:
block
;
width
:
6rem
;
.gatheringInfo
{
padding-top
:
1rem
;
}
.gatheringInfo
.item
{
margin-top
:
0.5rem
;
}
.gatheringInfo
.item
.left
{
float
:
left
;
width
:
2rem
;
font-size
:
0.4rem
;
color
:
#333
;
height
:
0.8rem
;
line-height
:
0.8rem
;
margin-left
:
0.5rem
;
}
.gatheringInfo
.item
.input
{
left
:
left
;
width
:
5rem
;
height
:
0.8rem
;
line-height
:
0.8rem
;
font-size
:
0.4rem
;
border
:
1px
solid
#999
;
padding
:
0
0.2rem
;
}
.gatheringInfo
.sub
{
width
:
3rem
;
height
:
0.8rem
;
line-height
:
0.8rem
;
background
:
#ff6600
;
color
:
#fff
;
font-size
:
0.4rem
;
text-align
:
center
;
border-radius
:
0.2rem
;
margin
:
0
auto
;
margin-top
:
1rem
;
margin-top
:
2rem
;
}
.gatheringInfo
.note
{
font-size
:
0.4rem
;
color
:
red
;
position
:
fixed
;
left
:
0.5rem
;
bottom
:
0.5rem
;
}
.gatheringInfo
.full
{
position
:
fixed
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;
z-index
:
100
;
top
:
0
;
left
:
0
;
font-size
:
0.5rem
;
display
:
none
;
}
.gatheringInfo
.full
.text
{
display
:
inline-block
;
position
:
relative
;
left
:
50%
;
top
:
50%
;
transform
:
translate
(
-50%
,
-50%
);
-webkit-transform
:
translate
(
-50%
,
-50%
);
}
sudoke/css/index.less
View file @
f38aa456
...
...
@@ -99,53 +99,118 @@
text-align: center;
color: #999;
}
.black-bg {
}
.wxkitingSuccess {
.wxkitingSuccess-img {
display: block;
width: 6rem;
margin: 0 auto;
margin-top: 1rem;
}
}
.black-bg {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.7);
display: none;
.alert_info {
font-size: 0.4rem;
display: inline-block;
min-width: 3rem;
max-width: 8rem;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
background: #fff;
text-align: center;
border-radius: 0.15rem;
padding: 0.05rem 0.2rem;
}
}
.alert {
font-size: 0.4rem;
display: none;
min-width: 3rem;
max-width: 8rem;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
background: #000;
text-align: center;
border-radius: 0.2rem;
padding: 0.05rem;
color: #fff;
}
.gatheringInfo {
padding-top: 1rem;
.item {
margin-top: 0.5rem;
.left {
float: left;
width: 2rem;
font-size: 0.4rem;
color: #333;
height: 0.8rem;
line-height: 0.8rem;
margin-left: 0.5rem;
}
.input {
left: left;
width: 5rem;
height: 0.8rem;
line-height: 0.8rem;
font-size: 0.4rem;
border: 1px solid #999;
padding: 0 0.2rem;
}
}
.sub {
width: 3rem;
height: 0.8rem;
line-height: 0.8rem;
background: #ff6600;
color: #fff;
font-size: 0.4rem;
text-align: center;
border-radius: 0.2rem;
margin: 0 auto;
margin-top: 2rem;
}
.note {
font-size: 0.4rem;
color: red;
position: fixed;
left: 0.5rem;
bottom: 0.5rem;
}
.full {
position: fixed;
width: 100%;
height: 100%;
position: fixed;
background: #fff;
z-index: 100;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.7)
;
font-size: 0.5rem
;
display: none;
.alert_info {
font-size: 0.4rem;
.text {
display: inline-block;
min-width: 3rem;
max-width: 8rem;
position: fixed;
top: 50%;
position: relative;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
background: #fff;
text-align: center;
border-radius: 0.15rem;
padding: 0.05rem 0.2rem;
}
}
.alert {
font-size: 0.4rem;
display: none;
min-width: 3rem;
max-width: 8rem;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
background: #000;
text-align: center;
border-radius: 0.2rem;
padding: 0.05rem;
color: #fff;
}
}
.wxkitingSuccess {
.wxkitingSuccess-img {
display: block;
width: 6rem;
margin: 0 auto;
margin-top: 1rem;
}
}
}
\ No newline at end of file
sudoke/gatheringInfo.html
0 → 100644
View file @
f38aa456
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title>
收款账户信息
</title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/reset.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/index.css"
/>
<script
type=
"text/javascript"
src=
"js/fsize.js"
></script>
<link
rel=
"stylesheet"
href=
"css/weui.min.css"
>
</head>
<body>
<div
class=
"gatheringInfo"
>
<div
class=
"item"
>
<div
class=
"left"
>
账户名:
</div>
<input
class=
"input account"
type=
"text"
>
</div>
<div
class=
"item"
>
<div
class=
"left"
>
银行账号:
</div>
<input
class=
"input bankaccount"
type=
"text"
oninput =
"value=value.replace(/[^\d]/g,'')"
>
</div>
<div
class=
"item"
>
<div
class=
"left"
>
开户行:
</div>
<input
class=
"input bank"
type=
"text"
>
</div>
<div
class=
"sub"
>
提交
</div>
<div
class=
"note"
>
*注:请填写完整信息并认真核对
</div>
<div
class=
"full success"
>
<span
class=
"text"
>
已通过
</span>
</div>
<div
class=
"full ing"
>
<span
class=
"text"
style=
"color: red"
>
已提交
</span>
</div>
<div
class=
"black-bg"
>
<div
class=
"alert_info"
></div>
</div>
<div
class=
"alert"
></div>
</div>
</body>
<script
src=
"js/jquery.min.js"
></script>
<script>
$ip
=
'https://zhiboweb.ishuaji.cn/'
;
$
.
ajax
({
url
:
$ip
+
'wx/getuserbankacount.html'
,
dataType
:
"json"
,
data
:
{
uid
:
sessionStorage
.
bbb
,
token
:
sessionStorage
.
kkk
},
type
:
"get"
,
success
:
function
(
res
)
{
console
.
log
(
res
);
if
(
res
.
state
==
1
)
{
$
(
".success"
).
show
();
}
else
if
(
res
.
state
==
0
)
{
$
(
".ing"
).
show
();
}
else
if
(
res
.
state
==
-
1
)
{
$
(
".account"
).
val
(
res
.
bank
.
account
);
$
(
".bankaccount"
).
val
(
res
.
bank
.
bankaccount
);
$
(
".bank"
).
val
(
res
.
bank
.
bank
);
}
},
error
:
function
()
{
$
(
".black-bg"
).
show
();
$
(
".alert_info"
).
html
(
'抱歉,服务器无响应,请稍后再试'
);
}
});
$
(
".sub"
).
click
(
function
()
{
$
.
ajax
({
url
:
$ip
+
'wx/adduserbankacount.html'
,
dataType
:
"json"
,
data
:
{
uid
:
sessionStorage
.
bbb
,
token
:
sessionStorage
.
kkk
,
bankaccount
:
$
(
".bankaccount"
).
val
(),
account
:
$
(
".account"
).
val
(),
bank
:
$
(
".bank"
).
val
(),
},
type
:
"get"
,
success
:
function
(
res
)
{
console
.
log
(
res
);
if
(
res
.
code
==
1
)
{
$
(
".ing"
).
show
();
}
else
{
$
(
".alert"
).
css
(
'display'
,
'inline-block'
);
$
(
".alert"
).
html
(
res
.
msg
);
}
},
error
:
function
()
{
$
(
".black-bg"
).
show
();
$
(
".alert_info"
).
html
(
'抱歉,服务器无响应,请稍后再试'
);
}
});
});
</script>
</html>
\ No newline at end of file
sudoke/img/gatheringInfo.svg
0 → 100644
View file @
f38aa456
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
t=
"1530239406230"
class=
"icon"
style=
""
viewBox=
"0 0 1024 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"3213"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"200"
height=
"200"
><defs><style
type=
"text/css"
></style></defs><path
d=
"M852 286.39H172a106.32 106.32 0 0 0-106.2 106.2v380A106.32 106.32 0 0 0 172 878.79h680a106.32 106.32 0 0 0 106.2-106.2v-380A106.32 106.32 0 0 0 852 286.39z m13.8 486.2a14 14 0 0 1-13.8 13.8H172a14 14 0 0 1-13.8-13.8v-380a14 14 0 0 1 13.8-13.8h680a14 14 0 0 1 13.8 13.8z"
fill=
"#ff6600"
p-id=
"3214"
></path><path
d=
"M762 219.29H262a50.15 50.15 0 0 1-50-50 50.15 50.15 0 0 1 50-50h500a50.15 50.15 0 0 1 50 50 50.15 50.15 0 0 1-50 50z m-205.39 384l14.45-25h128.11A32.93 32.93 0 0 0 732 545.4v-4.33a32.92 32.92 0 0 0-32.83-32.83h-87.69l20.13-34.88A40.12 40.12 0 0 0 617 418.72a40.12 40.12 0 0 0-54.64 14.64l-43.26 74.88h-14.2l-43.23-74.88A40.12 40.12 0 0 0 407 418.72a40.12 40.12 0 0 0-14.64 54.64l20.13 34.88h-87.66A32.92 32.92 0 0 0 292 541.07v4.33a32.93 32.93 0 0 0 32.83 32.84h128.11l14.45 25a38.85 38.85 0 0 0 4.61 6.41v18.56H324.83A32.92 32.92 0 0 0 292 661.07v4.33a32.93 32.93 0 0 0 32.83 32.84H472v25a40.12 40.12 0 0 0 40 40 40.12 40.12 0 0 0 40-40v-25h147.17A32.93 32.93 0 0 0 732 665.4v-4.33a32.92 32.92 0 0 0-32.83-32.83H552v-18.56a38.85 38.85 0 0 0 4.61-6.41z"
fill=
"#ff6600"
p-id=
"3215"
></path></svg>
\ No newline at end of file
sudoke/index.html
View file @
f38aa456
...
...
@@ -34,6 +34,12 @@
<span>
小券提现
</span>
</a>
</div>
<div
class=
"cont"
>
<a
href=
"gatheringInfo.html"
>
<img
class=
"svg"
src=
"img/gatheringInfo.svg"
alt=
""
>
<span>
收款账户信息
</span>
</a>
</div>
<div
class=
"clearfix"
></div>
</div>
<div
class=
"weui_dialog_alert dialog-box"
id=
"tips"
>
...
...
sudoke/wxkiting.html
View file @
f38aa456
...
...
@@ -111,6 +111,7 @@
},
type
:
"POST"
,
success
:
function
(
res
)
{
console
.
log
(
res
);
if
(
res
.
code
==
1
)
{
location
.
href
=
"wxkitingSuccess.html"
;
}
else
{
...
...
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