This commit is contained in:
yj 2024-08-09 17:49:06 +08:00
parent fbb12a91da
commit 064aa893c5
1 changed files with 2 additions and 2 deletions

View File

@ -1007,7 +1007,7 @@ const Meeting: React.FC = () => {
style={{ marginBottom: '10px', width: '80%' }}
size={'small'}
onClick={() => {
PostRoomManager(state.roomId, state.roomNum).then(res => {
PostRoomManager(state.roomId, state.channelId).then(res => {
if (res.code === 200) {
onInvoke('sendOper', {
roomNum: state.channelId,
@ -1022,7 +1022,7 @@ const Meeting: React.FC = () => {
style={{ marginBottom: '10px', width: '80%' }}
size={'small'}
onClick={() => {
DeleteRoomManager(state.roomId, state.roomNum).then(res => {
DeleteRoomManager(state.roomId, state.channelId).then(res => {
if (res.code === 200) {
onInvoke('sendOper', {
roomNum: state.channelId,