This commit is contained in:
pengxiaolong
2025-05-13 22:16:09 +08:00
parent c006a8e63d
commit 5f8ff971d4
34 changed files with 411 additions and 309 deletions

View File

@@ -1,20 +1,23 @@
<template>
<div>
<button @click="openConversationList">打开会话列表</button>
<button @click="openContact">打开联系人</button>
</div>
</template>
<script>
export default {
methods: {
// 打开会话列表
openConversationList() {
uni.navigateTo({ url: '/TUIKit/components/TUIConversation/index' });
},
// 打开联系人
openContact() {
uni.navigateTo({ url: '/TUIKit/components/TUIContact/index' });
},
},
};
</script>
<template></template>
<script>
export default {
data() {
return {
title: "Hello",
};
},
onLoad() {
this.openConversationList();
},
methods: {
openConversationList() {
uni.navigateTo({ url: "/TUIKit/components/TUIConversation/index" });
},
},
};
</script>
<style scoped>
/* 样式定义 */
</style>