Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨俊
/
spread_im
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ac24d925
...
ac24d925a062e755afb5a8f11f6dbd357cbc333d
authored
2022-11-16 20:19:50 +0800
by
huhai
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修复bug
1 parent
8ed962a0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
src/components/conversation/conversationProfile/group-member-info.vue
src/components/conversation/conversationProfile/group-member-info.vue
View file @
ac24d92
...
...
@@ -223,11 +223,16 @@ export default {
});
},
setGroupMemberMuteTime
()
{
// console.log('Number(this.muteTime) is ',Number(this.muteTime))
let
_muteTime
=
Number
(
this
.
muteTime
)
if
(
_muteTime
>
99999999
)
{
_muteTime
=
99999999
}
this
.
tim
.
setGroupMemberMuteTime
({
groupID
:
this
.
currentConversation
.
groupProfile
.
groupID
,
userID
:
this
.
member
.
userID
,
muteTime
:
Number
(
this
.
muteTime
)
,
muteTime
:
_muteTime
,
})
.
then
(()
=>
{
this
.
muteTime
=
""
;
...
...
Please
register
or
sign in
to post a comment