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
f3214ad1
Commit
f3214ad1
authored
Nov 13, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加loading
parent
9f404379
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
10 deletions
+20
-10
jquery.dataStatistics.js
js/jquery.dataStatistics.js
+14
-7
mian.js
js/mian.js
+6
-3
No files found.
js/jquery.dataStatistics.js
View file @
f3214ad1
...
...
@@ -215,20 +215,27 @@ $.fn.dataStatistics = function(options) {
$
(
'.img_btn'
).
click
(
function
()
{
if
(
$
(
'.img_btn p'
).
css
(
'color'
)
==
'rgb(224, 50, 52)'
)
{
//判断按钮是否可以点击
if
(
options
.
count
!=
0
)
{
//判断是可以抢购
if
(
$
(
'.img_btn p'
).
css
(
'color'
)
==
'rgb(224, 50, 52)'
)
{
//判断按钮是否可以点击
if
(
options
.
count
!=
0
)
{
//判断是可以抢购
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"
,
type
:
"POST"
,
url
:
`
${
getApiUrl
().
urlJava
}
api/appActivity/PanicBuyingCoupon`
,
contentType
:
"application/json"
,
data
:
getJavaData
({
redemptionPrice
:
options
.
price
,
couponId
:
options
.
couponId
,
productName
:
'印象之旅-200元无敌优惠券'
}),
async
:
false
,
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
)
{
...
...
@@ -300,8 +307,8 @@ $.fn.dataStatistics = function(options) {
console
.
log
(
options
.
platform
)
if
(
options
.
platform
==
'app'
)
{
window
.
postMessage
(
JSON
.
stringify
({
'action'
:
'dismissHud'
}));
}
else
{
}
else
if
(
options
.
platform
==
'H5'
)
{
layer
.
close
(
loadingFlag
);
}
}
});
...
...
js/mian.js
View file @
f3214ad1
...
...
@@ -2,8 +2,11 @@
let
locationName
=
window
.
location
.
hostname
;
function
getApiUrl
()
{
let
url
=
{
urlPost
:
locationName
.
indexOf
(
'oytour'
)
!==
-
1
?
"http://reborn.oytour.com/api/common/post"
:
"http://192.168.2.214:8082/api/common/post"
,
urlJava
:
locationName
.
indexOf
(
'oytour'
)
!==
-
1
?
"https://efficient.oytour.com/"
:
"http://192.168.2.215:9000/"
urlPost
:
"http://reborn.oytour.com/api/common/post"
,
//urlPost: locationName.indexOf('oytour') !== -1 ? "http://reborn.oytour.com/api/common/post" : "http://192.168.2.214:8082/api/common/post",
//urlJava: locationName.indexOf('oytour') !== -1 ? "https://efficient.oytour.com/" : "http://192.168.2.215:9000/"
urlJava
:
"https://efficient.oytour.com/"
}
return
url
}
...
...
@@ -39,7 +42,7 @@ function getAjaxData(cmd, msg, tk) {
let
key
=
""
;
if
(
getLocalStorage
()
!=
null
)
{
token
=
getLocalStorage
().
token
;
key
=
getLocalStorage
().
S
ecretKey
;
key
=
getLocalStorage
().
s
ecretKey
;
}
let
encodeMsg
=
encodeURIComponent
(
JSON
.
stringify
(
msg
)).
toLowerCase
();
let
md5Str
=
hex_md5
(
`cmd=
${
cmd
}
&msg=
${
encodeMsg
}
×tamp=
${
timestamp
}
&token=
${
token
}
&key=
${
key
}
`
);
...
...
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