Commit 8935c3e2 by kaisa

feat:更新

parent 4c4aa2e6
Showing with 3 additions and 1 deletions
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
// 58:告知客户端是否打开原生侧滑返回手势(flutter使用) // 58:告知客户端是否打开原生侧滑返回手势(flutter使用)
// 59: 上麦/下麦 // 59: 上麦/下麦
// 60:隐藏客户端标题头部 // 60:隐藏客户端标题头部
// 61:通知客户端弹起购买VIP特权弹窗
function webAppComm() { function webAppComm() {
this.data = null; this.data = null;
...@@ -1007,10 +1008,11 @@ webAppComm.prototype.hideClientTitle = function (type) { ...@@ -1007,10 +1008,11 @@ webAppComm.prototype.hideClientTitle = function (type) {
} }
// 61:通知客户端弹起购买VIP特权弹窗 // 61:通知客户端弹起购买VIP特权弹窗
webAppComm.prototype.showVIPPurchasePopup = function () { webAppComm.prototype.showVIPPurchasePopup = function (orderId) {
let obj = { let obj = {
"cid": 61, "cid": 61,
"data": { "data": {
"orderId": orderId,
"msg": '弹起购买VIP特权弹窗' "msg": '弹起购买VIP特权弹窗'
} }
} }
......
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