Commit c41ed806 by kaisa

feat:cid57新增参数

parent 92f58f22
Showing with 3 additions and 2 deletions
...@@ -868,12 +868,13 @@ webAppComm.prototype.backOriginApp = function () { ...@@ -868,12 +868,13 @@ webAppComm.prototype.backOriginApp = function () {
} }
// 57: 告知客户端需要打开的是网页还是flutter页面(flutter使用) // 57: 告知客户端需要打开的是网页还是flutter页面(flutter使用)
webAppComm.prototype.openWebOrFlutterPage = function (pageType) { webAppComm.prototype.openWebOrFlutterPage = function (pageType,popupStyle) {
let obj = { let obj = {
"cid": 57, "cid": 57,
"data": { "data": {
"msg": '告知客户端需要打开的是网页还是flutter页面', "msg": '告知客户端需要打开的是网页还是flutter页面',
"pageType": pageType "pageType": pageType,
"popupStyle":popupStyle
} }
} }
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