增加群相册功能,长按朋友圈文字可以复制

This commit is contained in:
cansnow
2026-01-20 18:09:59 +08:00
parent db99bebcb4
commit 37b53b54ff
15 changed files with 489 additions and 32 deletions
+4 -1
View File
@@ -13,7 +13,7 @@
<my-avatar :src="storeCurrentConversation.faceURL" :isGroup="true" size="46" />
</template>
</uni-list-item>
<uni-list-item title="群名称" :rightText="storeCurrentConversation.showName" @click="editGroupName" :clickable="isOwner || isAdmin" :showArrow="isOwner || isAdmin"></uni-list-item>
<uni-list-item title="群名称" :rightText="storeCurrentConversation.showName" @click="editGroupName" :clickable="isOwner || isAdmin" :showArrow="isOwner || isAdmin"></uni-list-item>
<uni-list-item title="群公告" to="/pages/conversation/groupSettings/announcement" clickable showArrow></uni-list-item>
<uni-list-item title="群二维码" :to="getGroupQrcdeUrl" clickable showArrow></uni-list-item>
<uni-list-item v-if="isOwner || isAdmin" title="群管理" to="/pages/conversation/groupManage/index" clickable showArrow></uni-list-item>
@@ -21,6 +21,7 @@
</uni-list>
<u-gap></u-gap>
<uni-list>
<uni-list-item title="群相册" :to="'/pages/conversation/groupAlbum/groupAlbum?groupID='+storeCurrentConversation.groupID" showArrow></uni-list-item>
<uni-list-item title="查找聊天内容" :to="'/pages/common/search/index?type=conversation&conversationID='+storeCurrentConversation.conversationID" showArrow></uni-list-item>
</uni-list>
<u-gap></u-gap>
@@ -204,6 +205,8 @@
return this.storeCurrentGroup.status === GroupStatus.Muted;
},
},
onLoad() {
},
methods: {
editGroupName(){
if(this.isOwner || this.isAdmin){