This commit is contained in:
77
2024-04-22 00:51:55 +08:00
parent f532d3aa46
commit 1077d2ec09

View File

@@ -492,7 +492,7 @@ export default {
}); });
}, },
handleLogoutUser(row){ handleLogoutUser(row){
let html = `<p>确认踢用户:<span style="color: cadetblue">` + row.nickname + `</span> 下线?</p>` let html = `<p>确认踢用户:<span style="color: cadetblue">` + row.nickname + `</span> 下线?</p>`
+ `<p>提醒:<span style="color: red">强制踢用户下线,如果正在用户通话中,可能会有通话中断</span></p>` + `<p>提醒:<span style="color: red">强制踢用户下线,如果正在用户通话中,可能会有通话中断</span></p>`
this.$confirm(html, '警告', { this.$confirm(html, '警告', {
confirmButtonText: '确定', confirmButtonText: '确定',
@@ -503,7 +503,7 @@ export default {
this.loading = true this.loading = true
return userLogout(row.id) return userLogout(row.id)
}).then(() => { }).then(() => {
this.$modal.msgSuccess("解除成功"); this.$modal.msgSuccess("操作成功");
this.loading = false this.loading = false
this.getList() this.getList()
}).catch(() => { }).catch(() => {