This commit is contained in:
Putoo
2026-05-31 16:04:39 +08:00
parent 6fac30c242
commit 3e6fde3681
19 changed files with 560 additions and 16 deletions

View File

@@ -131,10 +131,8 @@ const ChangeChat = async (typeid: string): Promise<void> => {
//删除记录
const DelChat = async (data: any) => {
MessageExtend.ShowConfirmDialogAsyc("频道管理", `您确定要删除该发言吗?`, async () => {
MessageExtend.LoadingToast("删除中...");
let result = await ChatService.DeleteChat(data.chatId);
MessageExtend.LoadingClose();
MessageExtend.ShowConfirmDialogAsyc("频道管理", `您确定要删除该发言吗?`, async () => {
let result = await ChatService.DeleteChat(data.chatId);
if (result.code == 0) {
await BindData();
MessageExtend.Notify("删除成功!", "success");