Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
fireflyReg
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
04dc3054
authored
Nov 06, 2023
by
libai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试
parent
346ae930
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
5 deletions
h5pay/newPay/css/index.css
h5pay/newPay/css/index.less
h5pay/newPay/images/more-icon.png
h5pay/newPay/index.html
h5pay/newPay/css/index.css
View file @
04dc3054
...
...
@@ -357,6 +357,7 @@
height
:
0.76rem
;
line-height
:
0.76rem
;
padding-top
:
0.3rem
;
position
:
relative
;
}
.area-search-box
input
{
width
:
9rem
;
...
...
@@ -367,6 +368,12 @@
color
:
#fff
;
font-size
:
0.3rem
;
}
.area-search-box
.more-icon
{
width
:
0.4rem
;
position
:
absolute
;
top
:
0.5rem
;
left
:
0.65rem
;
}
.area-ul
{
width
:
10rem
;
height
:
9.7rem
;
...
...
@@ -448,3 +455,9 @@
text-align
:
center
;
font-weight
:
700
;
}
.countryCode
{
font-style
:
normal
;
position
:
absolute
;
right
:
1rem
;
color
:
rgba
(
255
,
255
,
255
,
0.8
);
}
h5pay/newPay/css/index.less
View file @
04dc3054
...
...
@@ -365,6 +365,7 @@
height: 0.76rem;
line-height: 0.76rem;
padding-top: 0.3rem;
position: relative;
input{
width: 9rem;
height: 0.76rem;
...
...
@@ -374,6 +375,12 @@
color: #fff;
font-size: 0.3rem;
}
.more-icon{
width: 0.4rem;
position: absolute;
top: 0.5rem;
left: 0.65rem;
}
}
.area-ul{
width: 10rem;
...
...
@@ -455,4 +462,10 @@
color: #00F7FF;
text-align: center;
font-weight: 700;
}
.countryCode{
font-style:normal;
position: absolute;
right: 1rem;
color:rgba(255,255,255,0.8);
}
\ No newline at end of file
h5pay/newPay/images/more-icon.png
0 → 100644
View file @
04dc3054
783 Bytes
h5pay/newPay/index.html
View file @
04dc3054
...
...
@@ -72,7 +72,7 @@
</div>
<div
class=
"area-content-box"
>
<div
class=
"area-box"
>
儲值地區:
<div
class=
"area-content"
><img
src=
"images/area-icon.png"
alt=
""
><span>
中國
</span></div>
儲值地區:
<div
class=
"area-content"
><img
src=
"images/area-icon.png"
alt=
""
><span>
--
</span></div>
</div>
</div>
...
...
@@ -127,6 +127,7 @@
<h2
class=
"layer-area-title"
>
選擇儲值地區
</h2>
<div
class=
"area-search-box"
>
<img
class=
"more-icon"
src=
"images/more-icon.png"
alt=
""
>
<input
placeholder=
"搜索"
type=
"text"
>
</div>
<ul
class=
"area-ul"
>
...
...
@@ -187,7 +188,7 @@ $(function(){
dataType
:
"JSON"
,
data
:
{
os
:
'h5'
,
cid
:
'
h5_firefly
gw'
,
cid
:
'
web_
gw'
,
vest
:
0
,
lang
:
2
,
}
...
...
@@ -478,8 +479,8 @@ $(function(){
var
html
=
[];
for
(
var
i
=
0
;
i
<
data
.
countryList
.
length
;
i
++
){
var
list
=
data
.
countryList
[
i
]
if
(
sessionStorage
.
countryCode
==
list
.
countryCode
)
html
+=
'
<
li
data
-
type
=
"'+list.countryCode+'"
class
=
"area-li-click"
><
img
src
=
"images/area-icon.png"
><
span
>
'+list.countryShowName+'
<
/span></
li
>
'
else html+='
<
li
data
-
type
=
"'+list.countryCode+'"
><
img
src
=
"images/area-icon.png"
><
span
>
'+list.countryShowName+'
<
/span></
li
>
'
if
(
sessionStorage
.
countryCode
==
list
.
countryCode
)
html
+=
'
<
li
data
-
type
=
"'+list.countryCode+'"
class
=
"area-li-click"
><
img
src
=
"images/area-icon.png"
><
span
>
'+list.countryShowName+'
<
/span><
i class="countryCode">'+list.countryCode+'</i
><
/li>
'
else
html
+=
'
<
li
data
-
type
=
"'+list.countryCode+'"
><
img
src
=
"images/area-icon.png"
><
span
>
'+list.countryShowName+'
<
/span><
i class="countryCode">'+list.countryCode+'</i
><
/li>
'
}
$
(
".area-ul"
).
html
(
html
)
$
(
".area-ul li"
).
unbind
(
"click"
).
on
(
"click"
,
function
(){
...
...
@@ -890,7 +891,7 @@ $(function(){
dataType
:
'text'
,
data
:
{
'os'
:
'PC'
,
'cid'
:
'
Web_firefly
gw'
,
'cid'
:
'
web_
gw'
,
'vest'
:
0
,
'lang'
:
2
,
"uid"
:
localStorage
.
uid
,
...
...
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