index.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <div>
  3. <div
  4. class="tui-conversation"
  5. @click="handleClickConv"
  6. @touchstart="handleTouchStart"
  7. @touchend="handleTouchEnd"
  8. >
  9. <div class="header">
  10. <div class="item" @click="group">
  11. <img
  12. src="https://directpurchase-oss-dev.oss-cn-chengdu.aliyuncs.com/wx/static/img/jhq.png"
  13. style="width: 60px; height: 60px"
  14. />
  15. <span class="title">资源聚合群</span>
  16. </div>
  17. <div class="item" @click="book">
  18. <img
  19. src="https://directpurchase-oss-dev.oss-cn-chengdu.aliyuncs.com/wx/static/img/txl.png"
  20. style="width: 60px; height: 60px"
  21. />
  22. <span class="title">通讯录</span>
  23. </div>
  24. <div class="item" @click="interactive">
  25. <div class="count" v-if="hdxsCount > 0">{{ hdxsCount }}</div>
  26. <img
  27. src="https://directpurchase-oss-dev.oss-cn-chengdu.aliyuncs.com/wx/static/img/hdxx.png"
  28. style="width: 60px; height: 60px"
  29. />
  30. <span class="title">互动消息</span>
  31. </div>
  32. <div class="item" @click="serviceNotice">
  33. <div class="count" v-if="fwCount > 0">{{ fwCount }}</div>
  34. <img
  35. src="https://directpurchase-oss-dev.oss-cn-chengdu.aliyuncs.com/wx/static/img/fwtz.png"
  36. style="width: 60px; height: 60px"
  37. />
  38. <span class="title">服务通知</span>
  39. </div>
  40. </div>
  41. <!--
  42. <TUISearch searchType="global" />
  43. <ConversationHeader v-if="isShowConversationHeader" ref="headerRef" />
  44. <ConversationNetwork /> -->
  45. <!-- <div
  46. v-if="!userId"
  47. style="
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. height: 90vh;
  52. justify-content: center;
  53. "
  54. >
  55. <img src="@/static/empaty.jpg" style="width: 200px; height: 150px" />
  56. <span style="margin-top: 20px"> 暂无会话~</span>
  57. </div> -->
  58. <ConversationList
  59. ref="conversationListDomRef"
  60. class="tui-conversation-list"
  61. @handleSwitchConversation="handleSwitchConversation"
  62. @getPassingRef="getPassingRef"
  63. />
  64. </div>
  65. <div></div>
  66. </div>
  67. </template>
  68. <script lang="ts" setup>
  69. import { TUIStore, StoreName, TUIChatService } from "@tencentcloud/chat-uikit-engine";
  70. import { TUIGlobal } from "@tencentcloud/universal-api";
  71. import { ref, onMounted } from "../../adapter-vue";
  72. // import TUISearch from "../TUISearch/index.vue";
  73. import ConversationList from "./conversation-list/index.vue";
  74. import * as msgApi from "@/api/message/index";
  75. // import ConversationHeader from "./conversation-header/index.vue";
  76. import ConversationNetwork from "./conversation-network/index.vue";
  77. import { onHide, onShow, onLoad } from "@dcloudio/uni-app";
  78. // #ifdef MP-WEIXIN
  79. // uniapp packaged mini-programs are integrated by default, and the default initialization entry file is imported here
  80. // TUIChatKit init needs to be encapsulated because uni vue2 will report an error when compiling H5 directly through conditional compilation
  81. import "./entry.ts";
  82. // #endif
  83. const centerDialogVisibl = ref(false);
  84. const emits = defineEmits(["handleSwitchConversation"]);
  85. const totalUnreadCount = ref(0);
  86. const headerRef = ref<typeof ConversationHeader>();
  87. const conversationListDomRef = ref<typeof ConversationList>();
  88. const touchX = ref<number>(0);
  89. const touchY = ref<number>(0);
  90. const isShowConversationHeader = ref<boolean>(true);
  91. onLoad((option) => {
  92. initCount();
  93. initCountServer();
  94. });
  95. const userId = uni.getStorageSync("userid");
  96. const hdxsCount = ref("");
  97. const fwCount = ref("");
  98. async function initCount() {
  99. let res = await msgApi.default.nuRead(1);
  100. hdxsCount.value = res.data;
  101. }
  102. async function initCountServer() {
  103. let res = await msgApi.default.nuRead(3);
  104. fwCount.value = res.data;
  105. }
  106. TUIStore.watch(StoreName.CONV, {
  107. totalUnreadCount: (count: number) => {
  108. totalUnreadCount.value = count;
  109. },
  110. });
  111. TUIStore.watch(StoreName.CUSTOM, {
  112. isShowConversationHeader: (showStatus: boolean) => {
  113. isShowConversationHeader.value = showStatus !== false;
  114. },
  115. });
  116. const interactive = () => {
  117. TUIGlobal?.navigateTo({
  118. url: "/pages/message/interactive",
  119. });
  120. };
  121. const serviceNotice = () => {
  122. TUIGlobal?.navigateTo({
  123. url: "/pages/message/serviceNotice",
  124. });
  125. };
  126. const group = () => {
  127. TUIGlobal?.navigateTo({
  128. url: "/pages/group/index",
  129. });
  130. };
  131. const book = () => {
  132. TUIGlobal?.navigateTo({
  133. url: "/TUIKit/components/TUIContact/index",
  134. });
  135. };
  136. function getQueryString(name) {
  137. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  138. var r = window.location.search.substr(1).match(reg);
  139. if (r != null) {
  140. return unescape(r[2]);
  141. }
  142. return null;
  143. }
  144. const spuInfo = ref();
  145. const handleSwitchConversation = async (conversationID: string) => {
  146. let spuId = getQueryString("spuId");
  147. let share = getQueryString("share");
  148. if (spuId && share === "1") {
  149. let res = await msgApi.default.getSupplyDetails({ spuId: spuId });
  150. console.log(res);
  151. spuInfo.value = res.data;
  152. uni.showModal({
  153. title: "提示",
  154. content: `是否确认分享给该好友`,
  155. success: function (res) {
  156. if (res.confirm) {
  157. console.log("用户点击确定");
  158. let promise = TUIChatService.sendCustomMessage({
  159. payload: {
  160. data: JSON.stringify({
  161. saleType: spuInfo.value.saleType,
  162. id: spuInfo.value.id,
  163. // 订单类消息标识字段
  164. businessID: "order",
  165. // 订单标题
  166. title: spuInfo.value.title,
  167. // 订单描述
  168. description: spuInfo.value.spuDesc,
  169. // 订单价格
  170. price: spuInfo.value.lowestPrice,
  171. // 订单 url
  172. link: "https://buy.cloud.tencent.com/avc?ver=ultimate",
  173. // 订单封面图
  174. imageUrl: spuInfo.value.pic,
  175. unit: spuInfo.value.unit,
  176. }),
  177. description: "",
  178. extension: "",
  179. },
  180. });
  181. console.log("promise", promise);
  182. TUIGlobal?.navigateTo({
  183. url: "/TUIKit/components/TUIChat/index",
  184. });
  185. emits("handleSwitchConversation", conversationID);
  186. } else if (res.cancel) {
  187. console.log("用户点击取消");
  188. }
  189. },
  190. });
  191. } else {
  192. TUIGlobal?.navigateTo({
  193. url: "/TUIKit/components/TUIChat/index",
  194. });
  195. emits("handleSwitchConversation", conversationID);
  196. }
  197. };
  198. const closeChildren = () => {
  199. headerRef?.value?.closeChildren();
  200. conversationListDomRef?.value?.closeChildren();
  201. };
  202. const handleClickConv = () => {
  203. closeChildren();
  204. };
  205. onHide(closeChildren);
  206. const handleTouchStart = (e: any) => {
  207. touchX.value = e.changedTouches[0].clientX;
  208. touchY.value = e.changedTouches[0].clientY;
  209. };
  210. const handleTouchEnd = (e: any) => {
  211. const x = e.changedTouches[0].clientX;
  212. const y = e.changedTouches[0].clientY;
  213. let turn = "";
  214. if (x - touchX.value > 50 && Math.abs(y - touchY.value) < 50) {
  215. // Swipe right
  216. turn = "right";
  217. } else if (x - touchX.value < -50 && Math.abs(y - touchY.value) < 50) {
  218. // Swipe left
  219. turn = "left";
  220. }
  221. if (y - touchY.value > 50 && Math.abs(x - touchX.value) < 50) {
  222. // Swipe down
  223. turn = "down";
  224. } else if (y - touchY.value < -50 && Math.abs(x - touchX.value) < 50) {
  225. // Swipe up
  226. turn = "up";
  227. }
  228. // Operate according to the direction
  229. if (turn === "down" || turn === "up") {
  230. closeChildren();
  231. }
  232. };
  233. const getPassingRef = (ref) => {
  234. ref.value = conversationListDomRef.value;
  235. };
  236. </script>
  237. <style lang="less" scoped>
  238. .title {
  239. font-family: PingFangSC, PingFang SC;
  240. font-weight: 500;
  241. font-size: 24rpx;
  242. color: #333333;
  243. margin-top: 10rpx;
  244. }
  245. .count {
  246. position: absolute;
  247. right: 0px;
  248. top: -4px;
  249. width: 18px;
  250. height: 18px;
  251. background: red;
  252. text-align: center;
  253. color: white;
  254. border-radius: 50%;
  255. display: flex;
  256. flex-direction: row;
  257. justify-content: center;
  258. align-items: center;
  259. font-size: 10px;
  260. }
  261. </style>
  262. <style lang="scss" scoped src="./style/index.scss"></style>