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
24bc9574
authored
May 20, 2025
by
dawei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 更新
parent
d0b3719b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
activeFt/luckySpace/index.html
activeFt/luckySpace/index.html
View file @
24bc9574
...
...
@@ -597,7 +597,7 @@ $(function(){
$(".go-btn").unbind("click").on("click",function(){
if(
url_get_params().isAllowDialog == 1 && url_get_p
arams().appversion >= 7620){
if(
getUrlParams().isAllowDialog == 1 && getUrlP
arams().appversion >= 7620){
var obj = {
"cid": 48,
"reqCode": gameDateId,
...
...
@@ -951,6 +951,20 @@ $(function(){
bet
(
sessionStorage
.
gameId
,
betType
)
}
function
getUrlParams
()
{
const
search
=
window
.
location
.
search
.
substring
(
1
);
// 去掉问号
const
params
=
{};
if
(
search
)
{
search
.
split
(
'&'
).
forEach
(
param
=>
{
const
[
key
,
value
]
=
param
.
split
(
'='
);
params
[
key
]
=
decodeURIComponent
(
value
||
''
);
// 解码特殊字符
});
}
return
params
;
}
function
appCollaboration
(
msg
)
{
var
sUserAgent
=
navigator
.
userAgent
.
toLowerCase
();
var
bIsIpad
=
sUserAgent
.
match
(
/ipad/i
)
==
"ipad"
;
...
...
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