Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SURPRISED
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
华国豪
SURPRISED
Commits
c854b7e4
Commit
c854b7e4
authored
Dec 17, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
28890dbf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
12 deletions
+24
-12
huikui.css
css/huikui.css
+3
-1
billPage.html
html/billPage.html
+2
-2
login.html
html/login.html
+18
-8
openRedPacket.html
html/openRedPacket.html
+1
-1
No files found.
css/huikui.css
View file @
c854b7e4
...
...
@@ -134,8 +134,8 @@
}
.page3
.page3_shiz
{
width
:
80%
;
padding-left
:
5%
;
padding-top
:
.3rem
;
margin
:
0
auto
;
}
.page3
.page3_shiz
img
{
width
:
100%
;
...
...
@@ -185,6 +185,7 @@
.page5
.page5_img
{
width
:
80%
;
margin
:
0
auto
;
text-align
:
center
;
}
.page5
.page5_img
img
{
width
:
90%
;
...
...
@@ -209,6 +210,7 @@
}
.page7
.page7_img
,
.page8
.page8_img
{
width
:
100%
;
text-align
:
center
;
}
.page7
.page7_img
img
,
.page8
.page8_img
img
{
width
:
95%
;
...
...
html/billPage.html
View file @
c854b7e4
...
...
@@ -231,7 +231,7 @@
userInfo
.
token
=
billPage
.
token
userInfo
.
secretKey
=
billPage
.
secretKey
}
else
{
// 否则就去登录
window
.
location
.
href
=
'
../
login.html?page=billPage'
;
window
.
location
.
href
=
'login.html?page=billPage'
;
}
var
str
=
location
.
href
,
param
=
str
.
substr
(
str
.
indexOf
(
"?"
)
+
1
),
...
...
@@ -307,7 +307,7 @@
}
else
{
layer
.
msg
(
res
.
message
)
setTimeout
(
function
(){
window
.
location
.
href
=
'
../
login.html?page=billPage'
;
window
.
location
.
href
=
'login.html?page=billPage'
;
},
500
)
}
}
...
...
html/login.html
View file @
c854b7e4
...
...
@@ -395,6 +395,10 @@
let
couponId
=
0
;
let
platform
=
0
;
let
href
=
window
.
location
.
href
;
let
isbillPage
=
false
if
(
window
.
location
.
href
.
split
(
'?'
)[
1
]
&&
window
.
location
.
href
.
split
(
'?'
)[
1
]
==
"page=billPage"
)
{
isbillPage
=
true
}
if
(
href
.
split
(
'?'
)[
1
]
&&
href
.
split
(
'?'
)[
1
].
indexOf
(
'redemptionPrice'
)
!=
-
1
){
let
param
=
href
.
split
(
'?'
)[
1
].
split
(
"&"
)
?
href
.
split
(
'?'
)[
1
].
split
(
"&"
)
:
null
;
...
...
@@ -476,15 +480,21 @@
secretKey
:
res
.
data
.
secretKey
,
}
localStorage
.
u
=
JSON
.
stringify
(
userInfo
)
if
(
jumpPay
==
0
||
couponId
==
0
){
window
.
location
.
href
=
'https://activity.oytour.com/html/GT_activities.html'
;
// window.location.href = './GT_activities.html';
}
else
{
window
.
location
.
href
=
`https://activity.oytour.com/html/Rushbuy.html?redemptionPrice=
${
price
}
&couponId=
${
couponId
}
&platform=
${
platform
}
&noClick=
${
'1'
}
&r=ejhr12123`
;
// window.location.href = `./Rushbuy.html?redemptionPrice=${price}&couponId=${couponId}&platform=${platform}&noClick=${'1'}&r=efr12123`;
if
(
isbillPage
){
localStorage
.
billPage
=
JSON
.
stringify
(
userInfo
);
setTimeout
(
function
(){
window
.
location
.
href
=
'billPage.html'
;
},
500
)
}
else
{
if
(
jumpPay
==
0
||
couponId
==
0
){
window
.
location
.
href
=
'https://activity.oytour.com/html/GT_activities.html'
;
// window.location.href = './GT_activities.html';
}
else
{
window
.
location
.
href
=
`https://activity.oytour.com/html/Rushbuy.html?redemptionPrice=
${
price
}
&couponId=
${
couponId
}
&platform=
${
platform
}
&noClick=
${
'1'
}
&r=ejhr12123`
;
// window.location.href = `./Rushbuy.html?redemptionPrice=${price}&couponId=${couponId}&platform=${platform}&noClick=${'1'}&r=efr12123`;
}
}
//window.location.href='http://127.0.0.1:5500/html/GT_activities.html';
}
else
{
layer
.
msg
(
res
.
message
);
...
...
html/openRedPacket.html
View file @
c854b7e4
...
...
@@ -274,7 +274,7 @@
}
else
{
localStorage
.
removeItem
(
"userInfo"
)
localStorage
.
removeItem
(
"dataObj"
)
window
.
location
.
href
=
'
../
login.html?page=billPage'
;
window
.
location
.
href
=
'login.html?page=billPage'
;
}
$
(
'.money'
).
html
(
dataObj
.
yearTotalPrice
);
...
...
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