Commit b17dff2f by agan

添加cid46

parent 85b834ea
Showing with 12 additions and 0 deletions
......@@ -632,6 +632,18 @@ webAppComm.prototype.syncChatHis = function (type, content, timeStr) {
webAppCollaboration(obj2);
}
//46: 将图片存入相册
webAppComm.prototype.savePhoto = function (imgUrl) {
let obj = {
"cid": 46, //将图片存入相册
"data": {
'imgUrl': imgUrl //照片地址
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//接收客戶端的消息
webAppComm.prototype.reMsgFromApp = 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