group-square.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. <template>
  2. <div class="w-full h-full">
  3. <ChatHeaderBar title="群聊广场" />
  4. <ChatSearch
  5. placeholder="搜索你想找的群聊"
  6. v-model:searchString="groupName"
  7. image="search"
  8. @search="search"
  9. ></ChatSearch>
  10. <van-pull-refresh v-model="refreshing" @refresh="onRefresh">
  11. <div class="h-[80vh]">
  12. <van-tabs
  13. class="w-full pl-0"
  14. title-active-color="#FF9300"
  15. title-inactive-color="#333333"
  16. v-model:active="active"
  17. @click-tab="onClickTab"
  18. style="--van-tabs-bottom-bar-color: #ff9300; --van-tabs-bottom-bar-width: 16px"
  19. swipeable
  20. >
  21. <van-tab
  22. class="border-t-[1px]"
  23. v-for="(el, i) in squareTabList"
  24. :key="el.id"
  25. :title="el?.typeName"
  26. >
  27. <div class="w-full h-full pl-16 box-border">
  28. <Empty v-if="!groupSquareList?.length && !loading" title="暂无群聊" top="100" />
  29. <!-- <van-list
  30. v-else
  31. v-model:loading="loading"
  32. error-text="获取失败"
  33. finished-text=""
  34. :finished="finished"
  35. :immediate-check="false"
  36. @load="getLoadList"
  37. > -->
  38. <template v-if="queryParams.groupTypeId == el.id">
  39. <van-cell
  40. v-for="(item, index) in groupSquareList"
  41. :key="item.id"
  42. style="--van-cell-horizontal-padding: 0; padding: 16px 16px 16px 0"
  43. center
  44. class="border-b-[1px] py-16 pl-0"
  45. >
  46. <template #icon>
  47. <div style="" class="h-48 w-48 border rounded-full mr-12 overflow-hidden">
  48. <img class="w-full h-full object-cover" :src="item.groupAvatar" alt="" />
  49. </div>
  50. </template>
  51. <template #title>
  52. <div class="flex justify-start font-semibold text-xl text-black-3 mb-4">
  53. <h1 class="shrink-0 max-w-180 line-clamp-1">
  54. {{ item.groupName }}
  55. </h1>
  56. <span v-if="item?.memberCount" class="shrink-0">
  57. ({{ item.memberCount }})
  58. </span>
  59. </div>
  60. <van-tag
  61. style="--van-tag-padding: 4px; --van-tag-radius: 6px"
  62. color="#FEF4E6"
  63. text-color="#FF9300"
  64. type="primary"
  65. >
  66. {{ item?.belongTypeIdDictMap?.name }}
  67. </van-tag>
  68. </template>
  69. <template #label>
  70. <p class="w-212 line-clamp-1 text-black-6 text-base mt-5">
  71. {{ item?.description }}
  72. </p>
  73. </template>
  74. <template #value>
  75. <!-- codeShowStatus v-if="item.state == 0" -->
  76. <van-button
  77. size="small"
  78. :color="chageState(item.codeShowStatus).color"
  79. round
  80. class="w-60 text-base font-semibold"
  81. plain
  82. style="--van-button-default-padding: 0"
  83. @click="handleJoinGroup(item)"
  84. >
  85. {{ chageState(item.codeShowStatus).text }}
  86. </van-button>
  87. <!-- <van-button
  88. v-if="item.codeShowStatus == 0"
  89. size="small"
  90. color="#fa8446"
  91. round
  92. class="w-60 text-base font-semibold"
  93. plain
  94. style="--van-button-default-padding: 0"
  95. @click="handleJoinGroup(item)"
  96. >
  97. 加入
  98. </van-button>
  99. <van-button
  100. v-if="item.codeShowStatus == 1"
  101. size="small"
  102. color="#fa8446"
  103. round
  104. class="w-60 text-base font-semibold"
  105. plain
  106. style="--van-button-default-padding: 0"
  107. @click="handleJoinGroup(item)"
  108. >
  109. 去聊天
  110. </van-button>
  111. <van-button
  112. v-if="item.codeShowStatus == 4"
  113. size="small"
  114. color="#999999"
  115. round
  116. class="w-60 text-base font-semibold"
  117. plain
  118. style="--van-button-default-padding: 0"
  119. @click="handleJoinGroup(item)"
  120. >
  121. 已申请
  122. </van-button> -->
  123. </template>
  124. </van-cell>
  125. </template>
  126. <!-- </van-list> -->
  127. </div>
  128. </van-tab>
  129. </van-tabs>
  130. </div>
  131. <!-- </div> -->
  132. </van-pull-refresh>
  133. <div class="fixed w-full p-16 pb-40 bottom-0 left-0 bg-white">
  134. <van-button
  135. size="large"
  136. style="background: #fa8446; margin-top: 30px"
  137. color="#fff"
  138. round
  139. block
  140. icon="plus"
  141. class="w-full"
  142. @click="navigateTo('/chat/create-group')"
  143. >
  144. 创建群聊
  145. </van-button>
  146. </div>
  147. </div>
  148. </template>
  149. <script setup>
  150. definePageMeta({
  151. layout: false
  152. })
  153. const groupName = ref('')
  154. const refreshing = ref(false)
  155. const loading = ref(false)
  156. const finished = ref(false)
  157. const groupSquareList = ref([])
  158. const squareTabList = ref([])
  159. const active = ref(0)
  160. const queryParams = reactive({
  161. pageNum: 1,
  162. pageSize: 10,
  163. groupName: '',
  164. groupTypeId: ''
  165. })
  166. // 获取切换的数据
  167. const onClickTab = ({ title }) => {
  168. // showToast(title)
  169. // groupSquareList.value = []
  170. queryParams.groupTypeId = squareTabList.value.find((item) => item.typeName == title).id
  171. // active.value = squareTabList.value.findIndex((item) => item.typeName == title)
  172. // getList()
  173. }
  174. // 加入群聊
  175. const handleJoinGroup = (item) => {
  176. if (item.codeShowStatus == 0) {
  177. // navigateTo({
  178. // path: '/chat/group',
  179. // query: { groupId: item.id },
  180. // replace: true
  181. // })
  182. }
  183. if (item.codeShowStatus == 1) {
  184. navigateTo({
  185. path: '/chat/group',
  186. query: { groupId: item.id },
  187. replace: true
  188. })
  189. }
  190. if (item.codeShowStatus == 2) {
  191. navigateTo('/chat/group', {
  192. query: { groupId: item.id },
  193. replace: true
  194. })
  195. }
  196. }
  197. // 获取群聊列表
  198. function getLoadList() {
  199. squareTabList.value = []
  200. queryParams.pageNum++
  201. finished.value = true
  202. getList()
  203. }
  204. const getTabList = async () => {
  205. try {
  206. let url = `/website/tourGroup/getGroupTypeFirst`
  207. const { data } = await request(url)
  208. if (Array.isArray(data) && data?.length) {
  209. squareTabList.value = [
  210. {
  211. typeName: '推荐',
  212. id: ''
  213. },
  214. ...data
  215. ]
  216. getList()
  217. } else {
  218. groupSquareList.value = []
  219. }
  220. } catch (err) {
  221. } finally {
  222. }
  223. }
  224. function chageState(state) {
  225. let item = {}
  226. if (state == 0) {
  227. item.text = '加入'
  228. item.color = '#FF9300'
  229. }
  230. if (state == 1) {
  231. item.text = '去聊天'
  232. item.color = '#D9D9D9'
  233. }
  234. // if (state == 2) {
  235. // item.text = '此群异常,暂不能加入'
  236. // item.fn = () => {}
  237. // }
  238. // if (state == 3) {
  239. // item.text = '此群已解散'
  240. // }
  241. if (state == 4) {
  242. item.text = '已申请'
  243. item.color = '#D9D9D9'
  244. }
  245. return item
  246. }
  247. // 获取数据
  248. const getList = async () => {
  249. try {
  250. let url = `/website/tourGroup/list`
  251. loading.value = true
  252. let {
  253. data: { dataList, totalCount }
  254. } = await request(url, {
  255. method: 'post',
  256. body: {
  257. ...queryParams
  258. }
  259. })
  260. if (Array.isArray(dataList) && dataList?.length) {
  261. groupSquareList.value = groupSquareList.value.concat(dataList)
  262. // groupSquareList.value = dataList
  263. } else {
  264. groupSquareList.value = []
  265. }
  266. loading.value = false
  267. refreshing.value = false
  268. // if (groupSquareList.value.length >= totalCount) {
  269. // finished.value = true
  270. // } else {
  271. finished.value = false
  272. // }
  273. } catch (err) {
  274. } finally {
  275. refreshing.value = false
  276. loading.value = false
  277. }
  278. }
  279. // watchEffect(
  280. // [() => queryParams.groupTypeId],
  281. // () => {
  282. // finished.value = false
  283. // groupSquareList.value = []
  284. // getList()
  285. // },
  286. // {
  287. // immediate: true
  288. // }
  289. // )
  290. onMounted(() => {
  291. getTabList()
  292. })
  293. // 搜索
  294. const search = () => {
  295. queryParams.pageNum = 1
  296. groupSquareList.value = []
  297. queryParams.groupName = groupName.value
  298. getList()
  299. }
  300. // 下拉刷新
  301. const onRefresh = () => {
  302. refreshing.value = true
  303. queryParams.pageNum = 1
  304. groupSquareList.value = []
  305. getList()
  306. }
  307. useSeoMeta({
  308. title: '群聊广场'
  309. })
  310. </script>
  311. <style lang="scss" scoped>
  312. ::v-deep .van-tabs__nav--line.van-tabs__nav--complete {
  313. padding-left: 5px;
  314. }
  315. </style>