index.js 428 字节
Newer Older
1
import $state from '@/uni_modules/uni-im/sdk/state/index.js';
DCloud_JSON's avatar
DCloud_JSON 已提交
2
export default {
3 4 5 6 7 8 9 10 11 12 13
  toChat(param) {
    if ($state.isWidescreen) {
      uni.$emit('uni-im-toChat', param)
    } else {
      let url = '/uni_modules/uni-im/pages/chat/chat?user_id=' + user_id
      if (param.source) {
        url += '&source=' + decodeURIComponent(JSON.stringify(param.source))
      }
      uni.navigateTo({url,animationDuration: 300})
    }
  },
DCloud_JSON's avatar
DCloud_JSON 已提交
14
}