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
6670cf71
authored
Jul 24, 2024
by
agan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xg
parent
7c81dba2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
js/webAppComm.js
js/webAppComm.js
View file @
6670cf71
...
...
@@ -366,13 +366,31 @@ webAppComm.prototype.hideTopBar = function () {
webAppCollaboration
(
obj2
);
}
//唤起谷歌、苹果支付
webAppComm
.
prototype
.
oriCharge
=
function
(
data
)
{
let
obj
=
{
"cid"
:
27
,
"reqCode"
:
new
Date
().
getTime
(),
"data"
:
{
"msg"
:
"直接唤起 苹果支付 和 google支付"
,
"pid"
:
data
.
pid
,
"packageid"
:
data
.
packageid
,
"chargeInfo"
:
data
.
info
,
"succeedAlert"
:
data
.
alert
}
}
let
obj2
=
JSON
.
stringify
(
obj
);
console
.
log
(
obj2
)
webAppCollaboration
(
obj2
);
}
// 31: 打开半屏网页
webAppComm
.
prototype
.
openHalfWeb
=
function
(
param
)
{
let
obj
=
{
"cid"
:
31
,
"data"
:
{
popupType
:
param
.
type
,
//popupType 1全屏2半屏3浮动屏(默认居中)
heightR
:
param
.
height
,
//heightR 弹窗高度 单位vw 安卓不允许传小数;
heightR
:
param
.
height
,
//heightR 弹窗高度 单位vw 安卓不允许
传小数;
widthR
:
param
.
width
,
//widthR 弹窗宽度vw
clickBlank
:
param
.
clickBlank
,
//clickBlank 点击区域外是否关闭 0不关闭 1关闭
url
:
param
.
url
,
//url 需要打开的url (默认拼接uid token roomid等参数)
...
...
@@ -389,7 +407,7 @@ webAppComm.prototype.openHalfWeb = function (param) {
if
(
param
.
top
||
param
.
top
===
0
)
{
obj
.
data
.
top
=
param
.
top
;
}
if
(
param
.
left
||
param
.
left
===
0
)
{
if
(
param
.
left
||
param
.
left
===
0
)
{
obj
.
data
.
left
=
param
.
left
;
}
if
(
param
.
bottom
||
param
.
bottom
===
0
)
{
...
...
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