Commit 8e8473e0 by kaisa

feat:更新

parent 32b55a35
Showing with 13 additions and 0 deletions
......@@ -944,6 +944,19 @@ webAppComm.prototype.hideClientTitle = function (type) {
webAppCollaboration(obj2);
}
// 61:通知客户端打开对应App内的flutter页面
webAppComm.prototype.openFlutterPage = function (url) {
let obj = {
"cid": 61,
"data": {
"flutterUrl": url,
"msg": '打开Flutter页面'
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//接收客戶端的消息
webAppComm.prototype.reMsgFromApp = function (callback) {
callback && callback();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment