black-list.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view>
  3. <template v-if="!isShowContactInfo">
  4. <view
  5. class="item"
  6. v-for="(item, index) in contactListMap.blackList.list"
  7. :key="index"
  8. @click="selectItem(item)"
  9. >
  10. <view>
  11. <image :src="item.avatar" class="img" />
  12. </view>
  13. <view class="right">
  14. <text class="name">{{ item.nick }}</text>
  15. </view>
  16. </view>
  17. </template>
  18. <div
  19. v-if="contactListMap.blackList.list.length < 1"
  20. style="
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. height: 90vh;
  25. justify-content: center;
  26. "
  27. >
  28. <img src="@/static/empaty.jpg" style="width: 200px; height: 150px" />
  29. <span style="margin-top: 20px"> 暂无黑名单~</span>
  30. </div>
  31. <view v-if="isShowContactInfo">
  32. <view class="item">
  33. <view>
  34. <image :src="detailObj.avatar" class="img" />
  35. </view>
  36. <view class="right">
  37. <view class="name">{{ detailObj.nick }}</view>
  38. <view class="id">ID:{{ detailObj.userID }}</view>
  39. </view>
  40. </view>
  41. <view
  42. style="
  43. margin-top: 20px;
  44. display: flex;
  45. flex-direction: row;
  46. align-items: center;
  47. justify-content: space-between;
  48. padding: 0px 20px;
  49. "
  50. >
  51. 加入黑名单<u-switch v-model="switchValue" @change="change" size="60"></u-switch>
  52. </view>
  53. </view>
  54. </view>
  55. </template>
  56. <script setup lang="ts">
  57. import {
  58. TUITranslateService,
  59. TUIStore,
  60. StoreName,
  61. IGroupModel,
  62. TUIFriendService,
  63. Friend,
  64. FriendApplication,
  65. TUIUserService,
  66. TUIConversationService,
  67. } from "@tencentcloud/chat-uikit-engine";
  68. import ContactInfo from "../../TUIKit/components/TUIContact/contact-info/index.vue";
  69. import { isPC, isUniFrameWork } from "../../TUIKit/utils/env";
  70. import { onLoad, onShow } from "@dcloudio/uni-app";
  71. import {
  72. IContactList,
  73. IContactSearchResult,
  74. IBlackListUserItem,
  75. IUserStatus,
  76. IUserStatusMap,
  77. IContactInfoType,
  78. } from "../../TUIKit/interface";
  79. import { TUIGlobal } from "@tencentcloud/universal-api";
  80. import { Toast, TOAST_TYPE } from "../../TUIKit/components/common/Toast/index";
  81. import { ref, computed, onMounted, onUnmounted, provide } from "../../TUIKit/adapter-vue";
  82. const currentContactInfo = ref();
  83. const contactListMap = ref();
  84. const isShowContactInfo = ref(false);
  85. const switchValue = ref(true);
  86. onLoad((options) => {
  87. contactListMap.value = JSON.parse(options.list);
  88. console.log(contactListMap.value);
  89. });
  90. const change = () => {
  91. TUIUserService.removeFromBlacklist({
  92. userIDList: [detailObj.value.userID],
  93. })
  94. .then(() => {
  95. TUIGlobal?.navigateTo({
  96. url: "/TUIKit/components/TUIContact/index",
  97. });
  98. isShowContactInfo.value = !isShowContactInfo.value;
  99. })
  100. .catch((error: any) => {
  101. Toast({
  102. message: TUITranslateService.t("TUIContact.移除黑名单失败"),
  103. type: TOAST_TYPE.ERROR,
  104. });
  105. });
  106. };
  107. const detailObj = ref();
  108. const selectItem = (record) => {
  109. isShowContactInfo.value = !isShowContactInfo.value;
  110. detailObj.value = record;
  111. };
  112. </script>
  113. <style lang="scss" scope>
  114. .item {
  115. display: flex;
  116. flex-direction: row;
  117. align-items: center;
  118. padding: 20rpx;
  119. border-bottom: 1px solid #f1f1f1;
  120. .right {
  121. margin-left: 10px;
  122. .name {
  123. font-weight: 600;
  124. font-size: 32rpx;
  125. color: #333333;
  126. }
  127. }
  128. .img {
  129. width: 60px;
  130. height: 60px;
  131. border-radius: 50%;
  132. }
  133. }
  134. </style>