Commit f75d8a00 by agan

xg

parent 71164dc0
Showing with 18 additions and 0 deletions
......@@ -405,6 +405,24 @@ webAppComm.prototype.changeTitle2 = function () {
webAppCollaboration(obj2);
}
//修改网页标题
webAppComm.prototype.changeTitle3 = function (imgUrl, param) {
var obj = {
"cid": 34, //修改网页title 居中显示。
"data": {
"type": 1, //1 图片 2文本。
"imgUrl": imgUrl,
"style": {
//图片
"width": param.width, //1
"height": param.height, //1
}
}
}
var obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//刷新网页
webAppComm.prototype.refreshWeb = 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