person.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view>
  3. <template v-if="!isShowContactInfo">
  4. <view
  5. class="item"
  6. v-for="(item, index) in contactListMap.friendApplicationList.list"
  7. :key="index"
  8. >
  9. <view>
  10. <image :src="item.avatar" class="img" />
  11. </view>
  12. <view
  13. class="right"
  14. style="
  15. display: flex;
  16. flex-direction: row;
  17. justify-content: space-between;
  18. width: 100%;
  19. "
  20. >
  21. <text class="name">{{ item.nick }}</text>
  22. <view
  23. @click="ty(item)"
  24. style="
  25. width: 114rpx;
  26. height: 54rpx;
  27. background: linear-gradient(275deg, #01cf6c 0%, #07e278 100%);
  28. border-radius: 28rpx;
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: center;
  32. align-items: center;
  33. color: white;
  34. "
  35. >同意</view
  36. >
  37. </view>
  38. </view>
  39. </template>
  40. <div
  41. v-else
  42. style="
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. height: 90vh;
  47. justify-content: center;
  48. "
  49. >
  50. <img src="@/static/empaty.jpg" style="width: 200px; height: 150px" />
  51. <span style="margin-top: 20px"> 暂无新增联系人~</span>
  52. </div>
  53. </view>
  54. </template>
  55. <script setup lang="ts">
  56. import TUIChatEngine, {
  57. TUITranslateService,
  58. TUIFriendService,
  59. } from "@tencentcloud/chat-uikit-engine";
  60. import { onLoad, onShow } from "@dcloudio/uni-app";
  61. import { Toast, TOAST_TYPE } from "../../TUIKit/components/common/Toast/index";
  62. import { ref, computed, onMounted, onUnmounted, provide } from "../../TUIKit/adapter-vue";
  63. const contactListMap = ref();
  64. const isShowContactInfo = ref(false);
  65. onLoad((options) => {
  66. contactListMap.value = JSON.parse(options.list);
  67. console.log(contactListMap.value);
  68. });
  69. const ty = (record) => {
  70. TUIFriendService.acceptFriendApplication({
  71. userID: record.To_Account,
  72. remark: record.Remark,
  73. type: TUIChatEngine.TYPES.SNS_APPLICATION_AGREE_AND_ADD,
  74. })
  75. .then(() => {
  76. Toast({
  77. message: TUITranslateService.t("已同意申请"),
  78. type: TOAST_TYPE.SUCCESS,
  79. });
  80. })
  81. .catch((error) => {
  82. Toast({
  83. message: TUITranslateService.t(error),
  84. type: TOAST_TYPE.ERROR,
  85. });
  86. });
  87. };
  88. </script>
  89. <style lang="scss" scope>
  90. .item {
  91. display: flex;
  92. flex-direction: row;
  93. align-items: center;
  94. padding: 20rpx;
  95. border-bottom: 1px solid #f1f1f1;
  96. .right {
  97. margin-left: 10px;
  98. .name {
  99. font-weight: 600;
  100. font-size: 32rpx;
  101. color: #333333;
  102. }
  103. }
  104. .img {
  105. width: 60px;
  106. height: 60px;
  107. border-radius: 50%;
  108. }
  109. }
  110. </style>