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
d18bb287
authored
Nov 07, 2023
by
libai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试
parent
cc50caeb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
css/newpccss/index.css
h5pay/newPay/index.html
index.html
js/newpcjs/index.js
css/newpccss/index.css
View file @
d18bb287
...
...
@@ -1602,6 +1602,9 @@ input::-moz-placeholder {
width
:
530px
;
margin
:
0
auto
;
padding-top
:
10px
;
height
:
360px
;
overflow
:
scroll
;
-webkit-overflow-scrolling
:
touch
;
}
.pay-area-ul
li
{
width
:
125px
;
...
...
h5pay/newPay/index.html
View file @
d18bb287
...
...
@@ -386,7 +386,7 @@ $(function(){
var
list
=
data
.
payTypeList
[
i
]
html
+=
'
<
div
class
=
"box2-pay-box"
>
';
html+='
<
div
data
-
type
=
"'+data.payTypeList[i].payType+'"
data
-
type2
=
"'+i+'"
class
=
"pay-click-box"
>
'
html+='
<
div
class
=
"pay-tips-box"
>
1
<
img
src
=
"images/diamond.png"
alt
=
""
>
≈
'+list.unitPrice+'
<
/div>'
;
html+='
<
div
class
=
"pay-tips-box"
>
1
'+list.currencyName+'
≈
'+list.unitPrice+'
<
img
src
=
"images/diamond.png"
alt
=
""
>
<
/div>'
;
html
+=
'
<
img
class
=
"pay-img"
src
=
"images/pay/'+list.payType+'.png"
alt
=
""
>
';
html+='
<
/div>
'
html
+=
'
<
span
class
=
"pay-span"
>&
gt
;
<
/span>'
;
...
...
index.html
View file @
d18bb287
...
...
@@ -585,7 +585,7 @@
<div
class=
"pay-text-input-btn"
>
確定
</div>
</div>
<div
class=
"pay-text-tips-box"
>
<p>
支持的
储
值方式
</p>
<p>
支持的
儲
值方式
</p>
<ul
class=
"pay-text-tips-ul"
>
<li><img
src=
"newPayImg/TW_PAY.png"
alt=
""
></li>
<li><img
src=
"newPayImg/LINE_PAY.png"
alt=
""
></li>
...
...
@@ -622,7 +622,7 @@
</div>
<div
class=
"pay-content-box2-list"
>
<div
class=
"pay-list-exc-tips"
>
1
<img
src=
"images/diamond.png"
alt=
""
>
≈
<span>
1.00RMB
</span>
</div>
<div
class=
"pay-list-exc-tips"
></div>
<div
class=
"pay-list-left"
>
<!-- <div class="pay-list-click"><img src="images/linepay.png" alt=""></div>
<div><img src="images/linepay.png" alt=""></div>
...
...
js/newpcjs/index.js
View file @
d18bb287
...
...
@@ -1242,7 +1242,8 @@ function getPayInfo(codeNum){
sessionStorage
.
pay
=
data
.
payTypeList
[
0
].
payType
sessionStorage
.
countryCode
=
codeNum
$
(
".pay-top-area-exc span"
).
text
(
sessionStorage
.
countryName
)
$
(
".pay-list-exc-tips span"
).
text
(
data
.
payTypeList
[
0
].
unitPrice
)
// $(".pay-list-exc-tips span").text(data.payTypeList[0].unitPrice)
$
(
".pay-list-exc-tips"
).
html
(
'1'
+
data
.
payTypeList
[
0
].
currencyName
+
'≈ <span>'
+
data
.
payTypeList
[
0
].
unitPrice
+
'<img src="images/diamond.png" alt=""></span>'
)
$
(
".pay-list-left >div"
).
unbind
(
"click"
).
on
(
"click"
,
function
(){
$
(
".pay-list-left >div"
).
removeClass
(
"pay-list-click"
)
var
_self
=
$
(
this
)
...
...
@@ -1253,7 +1254,8 @@ function getPayInfo(codeNum){
_self
.
addClass
(
"pay-list-click"
)
getRecharge
(
_self
.
attr
(
"data-type"
))
sessionStorage
.
pay
=
_self
.
attr
(
"data-type"
)
$
(
".pay-list-exc-tips span"
).
text
(
data
.
payTypeList
[
_self
.
attr
(
"data-type2"
)].
unitPrice
)
// $(".pay-list-exc-tips span").text(data.payTypeList[_self.attr("data-type2")].unitPrice)
$
(
".pay-list-exc-tips"
).
html
(
'1'
+
data
.
payTypeList
[
_self
.
attr
(
"data-type2"
)].
currencyName
+
'≈ <span>'
+
data
.
payTypeList
[
_self
.
attr
(
"data-type2"
)].
unitPrice
+
'<img src="images/diamond.png" alt=""></span>'
)
})
}
}
...
...
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