Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
Static
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
e60e9143
authored
Mar 06, 2024
by
agan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xg
parent
32ce81f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
js/webAppComm.js
js/webAppComm.js
View file @
e60e9143
...
@@ -363,15 +363,27 @@ webAppComm.prototype.openHalfWeb = function (param) {
...
@@ -363,15 +363,27 @@ webAppComm.prototype.openHalfWeb = function (param) {
widthR
:
param
.
width
,
//widthR 弹窗宽度vw
widthR
:
param
.
width
,
//widthR 弹窗宽度vw
clickBlank
:
param
.
clickBlank
,
//clickBlank 点击区域外是否关闭 0不关闭 1关闭
clickBlank
:
param
.
clickBlank
,
//clickBlank 点击区域外是否关闭 0不关闭 1关闭
url
:
param
.
url
,
//url 需要打开的url (默认拼接uid token roomid等参数)
url
:
param
.
url
,
//url 需要打开的url (默认拼接uid token roomid等参数)
top
:
param
.
top
||
''
,
//top 距离顶部位置 单位vw
//
top: param.top || '', //top 距离顶部位置 单位vw
left
:
param
.
left
||
''
,
//left 距离左边位置
//
left: param.left || '', //left 距离左边位置
bottom
:
param
.
bottom
||
''
,
//bottom 距离底部位置
//
bottom: param.bottom || '', //bottom 距离底部位置
right
:
param
.
right
||
''
,
//right 距离右边位置
//
right: param.right || '', //right 距离右边位置
isThrough
:
param
.
isThrough
,
//isThrough 是否可穿透 0不可穿透 1可穿透 默认为0
isThrough
:
param
.
isThrough
,
//isThrough 是否可穿透 0不可穿透 1可穿透 默认为0
afterReady
:
param
.
afterReady
,
// afterReady 是否加载完成后再显示。 0否 1是。 默认为0,
afterReady
:
param
.
afterReady
,
// afterReady 是否加载完成后再显示。 0否 1是。 默认为0,
needMounted
:
param
.
needMounted
,
//ios专用 0不独立 1独立。 默认是0.
needMounted
:
param
.
needMounted
,
//ios专用 0不独立 1独立。 默认是0.
}
}
}
}
if
(
param
.
top
||
param
.
top
===
0
)
{
obj
.
data
.
top
=
param
.
top
;
}
if
(
param
.
left
||
param
.
left
===
0
)
{
obj
.
data
.
left
=
param
.
left
;
}
if
(
param
.
bottom
||
param
.
bottom
===
0
)
{
obj
.
data
.
bottom
=
param
.
bottom
;
}
if
(
param
.
right
||
param
.
right
===
0
)
{
obj
.
data
.
right
=
param
.
right
;
}
let
obj2
=
JSON
.
stringify
(
obj
);
let
obj2
=
JSON
.
stringify
(
obj
);
webAppCollaboration
(
obj2
);
webAppCollaboration
(
obj2
);
}
}
...
...
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