Commit 1f8b7b41 by kaisa

feat:更新

parent c41ed806
Showing with 4 additions and 3 deletions
...@@ -843,7 +843,7 @@ webAppComm.prototype.calendarReminders = function (title, content, time, tipCont ...@@ -843,7 +843,7 @@ webAppComm.prototype.calendarReminders = function (title, content, time, tipCont
} }
// 55: 打开外部对应APP并链接到对应的账号 // 55: 打开外部对应APP并链接到对应的账号
webAppComm.prototype.openChatApp = function (appType,officialId) { webAppComm.prototype.openChatApp = function (appType, officialId) {
let obj = { let obj = {
"cid": 55, "cid": 55,
"data": { "data": {
...@@ -868,13 +868,14 @@ webAppComm.prototype.backOriginApp = function () { ...@@ -868,13 +868,14 @@ webAppComm.prototype.backOriginApp = function () {
} }
// 57: 告知客户端需要打开的是网页还是flutter页面(flutter使用) // 57: 告知客户端需要打开的是网页还是flutter页面(flutter使用)
webAppComm.prototype.openWebOrFlutterPage = function (pageType,popupStyle) { webAppComm.prototype.openWebOrFlutterPage = function (pageType, popupStyle, extraString) {
let obj = { let obj = {
"cid": 57, "cid": 57,
"data": { "data": {
"msg": '告知客户端需要打开的是网页还是flutter页面', "msg": '告知客户端需要打开的是网页还是flutter页面',
"pageType": pageType, "pageType": pageType,
"popupStyle":popupStyle "popupStyle": popupStyle,
"extraString": extraString
} }
} }
let obj2 = JSON.stringify(obj); let obj2 = JSON.stringify(obj);
......
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