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
87a01d40
Commit
87a01d40
authored
Nov 15, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
9511e486
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
19 deletions
+23
-19
Rushbuy.html
html/Rushbuy.html
+23
-19
No files found.
html/Rushbuy.html
View file @
87a01d40
...
...
@@ -187,13 +187,17 @@
<script
type=
"text/javascript"
src=
"https://res.wx.qq.com/open/js/jweixin-1.3.2.js"
></script>
<script>
let
param
=
window
.
location
.
href
.
split
(
'?'
)[
1
].
split
(
"&"
)
?
window
.
location
.
href
.
split
(
'?'
)[
1
].
split
(
"&"
)
:
null
;
let
price
=
param
?
param
[
0
].
split
(
'='
)[
1
]
:
0
;
let
couponId
=
param
?
param
[
1
].
split
(
'='
)[
1
]
:
0
;
let
platform
=
param
?
param
[
2
].
split
(
'='
)[
2
]
:
0
;
let
buyIf
=
{}
if
(
localStorage
.
buyInfo
)
{
buyIf
=
JSON
.
parse
(
localStorage
.
buyInfo
)
}
else
{
history
.
go
(
-
1
)
}
if
(
buyIf
.
platform
==
'app'
)
{
//
if (localStorage.buyInfo) {
//
buyIf = JSON.parse(localStorage.buyInfo)
//
}else {
//
history.go(-1)
//
}
if
(
platform
==
'app'
)
{
move
(
1
)
}
else
{
move
(
2
)
...
...
@@ -237,10 +241,10 @@
return
;
}
var
loadingFlag
;
if
(
buyIf
.
platform
==
'app'
)
{
if
(
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'showHud'
,
'message'
:
'抢购中...'
}));
}
if
(
buyIf
.
platform
==
'H5'
)
{
if
(
platform
==
'H5'
)
{
loadingFlag
=
layer
.
msg
(
'抢购中...'
,
{
icon
:
16
,
shade
:
0.01
,
shadeClose
:
false
,
time
:
60000
});
}
$
.
ajax
({
...
...
@@ -248,16 +252,16 @@
url
:
`
${
getApiUrl
().
urlJava
}
api/appActivity/PanicBuyingCoupon`
,
contentType
:
"application/json"
,
data
:
getJavaData
({
redemptionPrice
:
buyIf
.
redemptionP
rice
,
couponId
:
buyIf
.
couponId
,
redemptionPrice
:
p
rice
,
couponId
:
couponId
,
productName
:
'印象之旅-200元线路产品优惠券'
}),
async
:
false
,
success
:
function
(
res
)
{
if
(
buyIf
.
platform
==
'app'
)
{
if
(
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'dismissHud'
}));
}
if
(
buyIf
.
platform
==
'H5'
)
{
if
(
platform
==
'H5'
)
{
layer
.
close
(
loadingFlag
);
}
if
(
res
.
resultCode
===
1
)
{
...
...
@@ -280,11 +284,11 @@
}
}
}
if
(
buyIf
.
platform
==
'app'
)
{
if
(
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
(
data
));
}
// 跳转到支付
else
if
(
buyIf
.
platform
==
'xcx'
)
{
else
if
(
platform
==
'xcx'
)
{
// window.postMessage(JSON.stringify(data));
let
data
=
{};
data
.
sOrderNo
=
res
.
data
.
id
;
...
...
@@ -296,7 +300,7 @@
url
:
`/pages/Home/pay/pay?data=`
+
JSON
.
stringify
(
data
),
});
});
}
else
if
(
buyIf
.
platform
==
'H5'
)
{
}
else
if
(
platform
==
'H5'
)
{
let
userInfo
=
getLocalStorage
()
let
data
=
{};
data
.
sOrderNo
=
res
.
data
.
id
;
...
...
@@ -313,7 +317,7 @@
}
else
{
if
(
buyIf
.
platform
==
'app'
)
{
if
(
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'showToast'
,
'message'
:
res
.
message
}));
}
else
{
layer
.
msg
(
res
.
message
)
...
...
@@ -325,10 +329,10 @@
}
},
error
:
function
(
res
)
{
console
.
log
(
buyIf
.
platform
)
if
(
buyIf
.
platform
==
'app'
)
{
console
.
log
(
platform
)
if
(
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'dismissHud'
}));
}
else
if
(
buyIf
.
platform
==
'H5'
)
{
}
else
if
(
platform
==
'H5'
)
{
layer
.
close
(
loadingFlag
);
}
}
...
...
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