提交 75343a72 编写于 作者: DCloud_JSON's avatar DCloud_JSON

更新 打开会话的参数支持 object

上级 6fac882c
...@@ -604,6 +604,11 @@ ...@@ -604,6 +604,11 @@
uniIm.audioContext.stop() uniIm.audioContext.stop()
}, },
async onLoad(param) { async onLoad(param) {
for (const key in param) {
try{
param[key] = JSON.parse(param[key])
}catch(_){}
}
//调用load方法,因为pc宽屏时本页面是以组件形式展示。如$refs.chatView.loadconversation_id()执行 //调用load方法,因为pc宽屏时本页面是以组件形式展示。如$refs.chatView.loadconversation_id()执行
await this.load(param); await this.load(param);
}, },
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册