Commit d722ab71 by kaisa

feat:新增修改

parent 669f50a0
Showing with 13 additions and 0 deletions
...@@ -555,6 +555,19 @@ webAppComm.prototype.changeTitle3 = function (imgUrl, param) { ...@@ -555,6 +555,19 @@ webAppComm.prototype.changeTitle3 = function (imgUrl, param) {
webAppCollaboration(obj2); webAppCollaboration(obj2);
} }
// 修改网页标题
webAppComm.prototype.changeTitle4 = function (title) {
let obj = {
"cid": 34, //修改网页title 居中显示。
"data": {
"type": 2, //1 图片 2文本。
"imgTxt": title,
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//刷新网页 //刷新网页
webAppComm.prototype.refreshWeb = function (callback) { webAppComm.prototype.refreshWeb = function (callback) {
callback && 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