yangjie #45

Merged
yangqiang merged 19 commits from yangjie into master 2024-12-18 13:52:10 +08:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 6fce7478c6 - Show all commits

View File

@ -306,6 +306,7 @@ const Index: React.FC = () => {
year: item.year,
id: item.id,
})
setAllowAnonymous(item.allowAnonymous)
getSubDpList()
setIsCreateRoom(false)
setCreateRoomModal(true)
@ -496,6 +497,7 @@ const Index: React.FC = () => {
if (res.code === 200) {
message.success('创建成功!')
setCreateRoomModal(false)
setAllowAnonymous(true)
getRoomList()
}
})
@ -506,6 +508,7 @@ const Index: React.FC = () => {
if (res.code === 200) {
message.success('更新成功!')
setCreateRoomModal(false)
setAllowAnonymous(true)
getRoomList()
}
})