Files
ZhHealth/pages/im/friends/info.vue

22 lines
411 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
好友资料
<u-button @click="toPrivate">发送消息</u-button>
</div>
</template>
<script>
export default {
methods: {
toPrivate() {
uni.navigateTo({
url: '/pages/im/private/index?targetId=10047&conversationType=1'
})
}
}
}
</script>
<style>
</style>