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
33e49d17
Commit
33e49d17
authored
Nov 14, 2019
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
87d68864
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
218 additions
and
106 deletions
+218
-106
GT_activities.html
html/GT_activities.html
+4
-1
Rushbuy.html
html/Rushbuy.html
+108
-7
jquery.dataStatistics.js
js/jquery.dataStatistics.js
+106
-97
mian.js
js/mian.js
+0
-1
No files found.
html/GT_activities.html
View file @
33e49d17
...
...
@@ -397,7 +397,10 @@
//优惠券的有限时间
let
expirationDate
=
(
res
.
data
.
expirationDate
).
split
(
'T'
)[
0
].
replace
(
/-/g
,
'.'
);
RushbuyTime
=
expirationDate
;
let
RushbuyTime
=
{
RushbuyTime
:
expirationDate
,
}
localStorage
.
RushbuyTime
=
JSON
.
stringify
(
RushbuyTime
)
$
(
'.img_bg_p2'
).
html
(
'有效期截止:'
+
expirationDate
)
}
else
{
...
...
html/Rushbuy.html
View file @
33e49d17
...
...
@@ -63,21 +63,122 @@
<script
type=
"text/javascript"
src=
"../js/layer/layer.js"
></script>
<script
type=
"text/javascript"
src=
"../js/mian.js"
></script>
<script>
let
RushbuyTime
=
JSON
.
parse
(
localStorage
.
RushbuyTime
)
$
(
function
(){
$
(
'#RushbuyTime'
).
html
(
`有效期截止:`
+
RushbuyTime
)
$
(
'#RushbuyTime'
).
html
(
`有效期截止:`
+
RushbuyTime
.
RushbuyTime
)
setTimeout
(
function
(){
$
(
'.box'
).
addClass
(
'move'
)
},
500
)
}
)
let
buyIf
=
{}
// if (localStorage.buyInfo) {
// buyIf = localStorage.buyInfo
// }else {
// window.location.href = 'https://activity.oytour.com/html/GT_activities.html';
// }
if
(
localStorage
.
buyInfo
)
{
buyIf
=
JSON
.
parse
(
localStorage
.
buyInfo
)
}
else
{
window
.
location
.
href
=
'https://activity.oytour.com/html/GT_activities.html'
;
}
var
loadingFlag
;
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'showHud'
,
'message'
:
'抢购中...'
}));
}
if
(
options
.
platform
==
'H5'
)
{
loadingFlag
=
layer
.
msg
(
'抢购中...'
,
{
icon
:
16
,
shade
:
0.01
,
shadeClose
:
false
,
time
:
60000
});
}
$
.
ajax
({
type
:
"POST"
,
url
:
`
${
getApiUrl
().
urlJava
}
api/appActivity/PanicBuyingCoupon`
,
contentType
:
"application/json"
,
data
:
getJavaData
({
redemptionPrice
:
buyIf
.
redemptionPrice
,
couponId
:
buyIf
.
couponId
,
productName
:
'印象之旅-200元线路产品优惠券'
}),
async
:
false
,
success
:
function
(
res
)
{
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'dismissHud'
}));
}
if
(
options
.
platform
==
'H5'
)
{
layer
.
close
(
loadingFlag
);
}
if
(
res
.
resultCode
===
1
)
{
// var timer3 = setInterval(()=>{ //1,需要timer2的定时器走完了 才走timer3的定时器
//
// nownumber = nownumber -1;
// run(1)
// clearInterval(timer3) //2,执行动画之后清除timer3
// },difference*1000)
let
title
=
'印象之旅-200元线路产品优惠券'
;
let
data
=
{
'action'
:
'jump'
,
// showToast->一个提示信息 showHud->一个黑色的loading
'page'
:
'payment'
,
'pageData'
:
{
'couponId'
:
res
.
data
.
couponId
,
'title'
:
title
,
'price'
:
res
.
data
.
preferPrice
,
'backType'
:
'reload'
,
'data'
:
res
.
data
}
}
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
(
data
));
}
// 跳转到支付
else
if
(
options
.
platform
==
'xcx'
)
{
// window.postMessage(JSON.stringify(data));
let
data
=
{};
data
.
sOrderNo
=
res
.
data
.
id
;
data
.
sProductName
=
title
;
data
.
productId
=
res
.
data
.
couponId
;
data
.
dTotalPrice
=
res
.
data
.
preferPrice
;
wx
.
miniProgram
.
getEnv
(
function
(
res
)
{
window
.
wx
.
miniProgram
.
navigateTo
({
url
:
`/pages/Home/pay/pay?data=`
+
JSON
.
stringify
(
data
),
});
});
}
else
if
(
options
.
platform
==
'H5'
)
{
let
userInfo
=
getLocalStorage
()
let
data
=
{};
data
.
sOrderNo
=
res
.
data
.
id
;
data
.
sProductName
=
title
;
data
.
productId
=
res
.
data
.
couponId
;
data
.
dTotalPrice
=
res
.
data
.
preferPrice
;
data
.
customerId
=
userInfo
.
customerId
;
sessionStorage
.
setItem
(
"payInfo"
,
JSON
.
stringify
(
data
));
//window.location.href = 'https://127.0.0.1:5500/html/pay.html';
//window.location.href = 'http://192.168.0.117:5500/html/pay.html';
window
.
location
.
href
=
'https://activity.oytour.com/html/pay.html'
;
}
}
else
{
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'showToast'
,
'message'
:
res
.
message
}));
}
else
{
layer
.
msg
(
res
.
message
)
}
layer
.
msg
(
res
.
message
)
// window.location.reload()
}
},
error
:
function
(
res
)
{
console
.
log
(
options
.
platform
)
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'dismissHud'
}));
}
else
if
(
options
.
platform
==
'H5'
)
{
layer
.
close
(
loadingFlag
);
}
}
});
</script>
</body>
...
...
js/jquery.dataStatistics.js
View file @
33e49d17
This diff is collapsed.
Click to expand it.
js/mian.js
View file @
33e49d17
let
locationName
=
window
.
location
.
hostname
;
let
RushbuyTime
=
'2019-11-14'
;
function
getApiUrl
()
{
let
url
=
{
urlPost
:
"https://reborn.oytour.com/api/common/post"
,
...
...
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