Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
fsActive
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
ac7ce2df
authored
Dec 04, 2025
by
kaisa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:新增防抖测试
parent
8c512b09
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
activeFt/luckySpace/index.html
activeFt/luckySpace/index.html
View file @
ac7ce2df
...
...
@@ -1061,6 +1061,7 @@
});
}
var
lastExchangeTime
=
0
;
function
bet
(
gid
,
type
)
{
$
.
ajax
({
url
:
$ip
+
"/rocketlaunch/playGame"
,
...
...
@@ -1078,6 +1079,9 @@
layer
.
msg
(
"露水不足"
);
else
layer
.
msg
(
"no DEWs"
);
setTimeout
(
function
()
{
var
currentTime
=
new
Date
().
getTime
();
if
(
currentTime
-
lastExchangeTime
>
3000
)
{
lastExchangeTime
=
currentTime
;
var
obj
=
{
cid
:
12
,
reqCode
:
new
Date
().
getTime
(),
...
...
@@ -1088,6 +1092,8 @@
};
var
obj2
=
JSON
.
stringify
(
obj
);
appCollaboration
(
obj2
);
}
},
1000
);
}
else
if
(
data
.
code
!=
1
)
{
layer
.
msg
(
data
.
msg
);
...
...
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