123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <div>
- <div
- class="tui-conversation"
- @click="handleClickConv"
- @touchstart="handleTouchStart"
- @touchend="handleTouchEnd"
- >
- <TUISearch searchType="global" />
- <div style="background: #fff">
- <div style="display: flex; flex-direction: row; align-items: center">
- <div class="header" @click="myGourp">我的群聊</div>
- <div class="header" @click="createGroup">创建粉丝群</div>
- </div>
- </div>
- <!-- <ConversationHeader
- v-if="isShowConversationHeader"
- ref="headerRef"
- /> -->
- <ConversationNetwork />
- <ConversationList
- ref="conversationListDomRef"
- class="tui-conversation-list"
- @handleSwitchConversation="handleSwitchConversation"
- @handleSwitchConversationObj="handleSwitchConversationObj"
- @getPassingRef="getPassingRef"
- />
- </div>
- <merchantTabBar :index="3"></merchantTabBar>
- </div>
- </template>
- <script lang="ts" setup>
- import * as MesApi from "../../../api/message";
- import {
- TUIStore,
- StoreName,
- TUIConversationService,
- } from "@tencentcloud/chat-uikit-engine";
- import { TUIGlobal } from "@tencentcloud/universal-api";
- import { ref } from "../../adapter-vue";
- import TUISearch from "../TUISearch/index.vue";
- import ConversationList from "./conversation-list/index.vue";
- import ConversationHeader from "./conversation-header/index.vue";
- import ConversationNetwork from "./conversation-network/index.vue";
- import { onHide } from "@dcloudio/uni-app"; // 该方法只能用在父组件内,子组件内不生效
- const emits = defineEmits(["handleSwitchConversation"]);
- const totalUnreadCount = ref(0);
- const headerRef = ref<typeof ConversationHeader>();
- const conversationListDomRef = ref<typeof ConversationList>();
- const touchX = ref<number>(0);
- const touchY = ref<number>(0);
- const isShowConversationHeader = ref<boolean>(true);
- TUIStore.watch(StoreName.CONV, {
- totalUnreadCount: (count: number) => {
- totalUnreadCount.value = count;
- },
- });
- TUIStore.watch(StoreName.CUSTOM, {
- isShowConversationHeader: (showStatus: boolean) => {
- isShowConversationHeader.value = showStatus !== false;
- },
- });
- const handleSwitchConversation = (conversationID: string) => {
- TUIGlobal?.navigateTo({
- url: "/TUIKit-House/components/TUIChat/index",
- });
- let companyUserId =
- conversationID[3] === "C"
- ? conversationID.substring(4)
- : conversationID.substring(3);
- TUIGlobal?.navigateTo({
- url:
- "/TUIKit-House/components/TUIChat/index?shopUserId=" +
- uni.getStorageSync("userId") +
- "&recruitUserId=" +
- companyUserId,
- });
- emits("handleSwitchConversation", conversationID);
- };
- const closeChildren = () => {
- headerRef?.value?.closeChildren();
- conversationListDomRef?.value?.closeChildren();
- };
- const shopInfo = ref({});
- const myGourp = () => {
- TUIGlobal?.navigateTo({
- url: "/TUIKit-House/components/TUIContact/index",
- });
- };
- const createGroup = async () => {
- const ownerAccount = uni.getStorageSync("id");
- // TUIConversationService.switchConversation(
- // "GROUP17527216214421942041809035223041"
- // );
- let res = await MesApi.default.getInfoByUserId();
- if (res.code == 200) {
- shopInfo.value = res.data;
- let create = await MesApi.default.createGroup({
- shopId: res.data.id,
- ownerAccount: ownerAccount,
- agentType: uni.getStorageSync("agentType"),
- });
- console.log(create);
- if (create.code == 200) {
- TUIConversationService.switchConversation(`GROUP${create.data.groupId}`);
- uni.$u.toast(create.msg);
- } else {
- uni.$u.toast(create.msg);
- }
- }
- };
- const handleClickConv = () => {
- closeChildren();
- };
- onHide(closeChildren);
- const handleTouchStart = (e: any) => {
- touchX.value = e.changedTouches[0].clientX;
- touchY.value = e.changedTouches[0].clientY;
- };
- const handleTouchEnd = (e: any) => {
- const x = e.changedTouches[0].clientX;
- const y = e.changedTouches[0].clientY;
- let turn = "";
- if (x - touchX.value > 50 && Math.abs(y - touchY.value) < 50) {
- // 右滑
- turn = "right";
- } else if (x - touchX.value < -50 && Math.abs(y - touchY.value) < 50) {
- // 左滑
- turn = "left";
- }
- if (y - touchY.value > 50 && Math.abs(x - touchX.value) < 50) {
- // 下滑
- turn = "down";
- } else if (y - touchY.value < -50 && Math.abs(x - touchX.value) < 50) {
- // 上滑
- turn = "up";
- }
- // 根据方向进行操作
- if (turn === "down" || turn === "up") {
- closeChildren();
- }
- };
- const getPassingRef = (ref) => {
- ref.value = conversationListDomRef.value;
- };
- </script>
- <style lang="scss" scoped>
- .header {
- height: 25px;
- background: white;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- padding: 0px 10px 10px 10px;
- }
- </style>
- <style lang="scss" scoped src="./style/index.scss"></style>
|