From 489fb71be5e1ed5a96d9080d9718145b1805fd54 Mon Sep 17 00:00:00 2001 From: wangyifeng <812766448@qq.com> Date: Wed, 22 Jan 2025 16:37:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E6=99=AE=E9=80=9A=E7=BE=A4?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=92=8C=E9=A1=B9=E7=9B=AE=E7=BE=A4=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=EF=BC=9B=E5=AE=9E=E7=8E=B0=E7=BE=A4=E5=A4=B4=E5=83=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8A=9F=E8=83=BD=EF=BC=9B=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BE=A4=E5=92=8C=E6=99=AE=E9=80=9A=E7=BE=A4?= =?UTF-8?q?=E7=9A=84=E7=AE=A1=E7=90=86=E5=91=98=E8=AE=BE=E7=BD=AE=E3=80=81?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E3=80=81=E6=9F=A5=E7=9C=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/x-confirm/index.vue | 135 ++++--- .../components/groupMembersList.vue | 17 +- .../chatSettings/groupManage/editAvatar.vue | 100 ++++- .../groupManage/editGroupName.vue | 3 +- .../groupManage/manageGroupAdmin.vue | 167 ++++++--- .../groupManage/manageGroupMembers.vue | 9 +- .../groupManage/selectMembers.vue | 25 +- src/pages/chatSettings/index.vue | 66 +++- src/pages/creatGroupChat/index.vue | 349 ++++++++++++------ src/pages/index/components/chatItem.vue | 16 +- src/pages/search/components/searchItem.vue | 16 +- src/static/image/chatList/groupCompany.png | Bin 0 -> 5599 bytes src/static/image/chatList/groupDepartment.png | Bin 0 -> 6710 bytes src/static/image/chatList/groupNormal.png | Bin 0 -> 6418 bytes src/static/image/chatList/groupProject.png | Bin 0 -> 5672 bytes src/static/image/chatList/zu4989@2x.png | Bin 6374 -> 0 bytes src/static/image/chatList/zu4991@2x.png | Bin 5692 -> 0 bytes src/static/image/chatList/zu4992@2x.png | Bin 6252 -> 0 bytes src/static/image/chatList/zu5296@2x.png | Bin 6119 -> 0 bytes src/uni_modules/tmui/locale/zh-Hans.json | 5 +- 20 files changed, 646 insertions(+), 262 deletions(-) create mode 100644 src/static/image/chatList/groupCompany.png create mode 100644 src/static/image/chatList/groupDepartment.png create mode 100644 src/static/image/chatList/groupNormal.png create mode 100644 src/static/image/chatList/groupProject.png delete mode 100644 src/static/image/chatList/zu4989@2x.png delete mode 100644 src/static/image/chatList/zu4991@2x.png delete mode 100644 src/static/image/chatList/zu4992@2x.png delete mode 100644 src/static/image/chatList/zu5296@2x.png diff --git a/src/components/x-confirm/index.vue b/src/components/x-confirm/index.vue index 1ca153e..6ec4db6 100644 --- a/src/components/x-confirm/index.vue +++ b/src/components/x-confirm/index.vue @@ -1,79 +1,114 @@ diff --git a/src/pages/chatSettings/components/groupMembersList.vue b/src/pages/chatSettings/components/groupMembersList.vue index fb87e5f..7918dc1 100644 --- a/src/pages/chatSettings/components/groupMembersList.vue +++ b/src/pages/chatSettings/components/groupMembersList.vue @@ -43,7 +43,11 @@ -
+
@@ -53,7 +57,12 @@
-
+
@@ -71,6 +80,7 @@ const props = defineProps({ memberList: Array, //人员列表 memberListsLimit: Number, //人员列表数量限制 is_manager: Boolean, //是否管理员 + groupType: Number, //群类型 }) //点击跳转到用户详情页面 @@ -81,6 +91,9 @@ const toUserDetailPage = (userItem) => { '/pages/dialog/dialogDetail/userDetail?erpUserId=' + userItem.erp_user_id, }) } + +//点击群聊拉人 +const groupAddMembers = () => {}