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
}
// 55: 打开外部对应APP并链接到对应的账号
webAppComm.prototype.openChatApp = function (appType,officialId) {
webAppComm.prototype.openChatApp = function (appType, officialId) {
let obj = {
"cid": 55,
"data": {
......@@ -868,13 +868,14 @@ webAppComm.prototype.backOriginApp = function () {
}
// 57: 告知客户端需要打开的是网页还是flutter页面(flutter使用)
webAppComm.prototype.openWebOrFlutterPage = function (pageType,popupStyle) {
webAppComm.prototype.openWebOrFlutterPage = function (pageType, popupStyle, extraString) {
let obj = {
"cid": 57,
"data": {
"msg": '告知客户端需要打开的是网页还是flutter页面',
"pageType": pageType,
"popupStyle":popupStyle
"popupStyle": popupStyle,
"extraString": extraString
}
}
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