rev: 在线用户、强制用户下线、对接日志

This commit is contained in:
2023-08-03 14:50:13 +08:00
parent 373670a51d
commit 13c1cdb824
35 changed files with 315 additions and 79 deletions

View File

@@ -45,7 +45,7 @@
<p>确定强制退出该用户吗</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="$refs[scope.$index].doClose()">取消</el-button>
<el-button :loading="delLoading" type="primary" size="mini" @click="delMethod(scope.row.key, scope.$index)">确定</el-button>
<el-button :loading="delLoading" type="primary" size="mini" @click="delMethod(scope.row, scope.$index)">确定</el-button>
</div>
<el-button slot="reference" size="mini" type="text">强退</el-button>
</el-popover>
@@ -101,7 +101,7 @@ export default {
const ids = []
if (key instanceof Array) {
key.forEach(val => {
ids.push(val.key)
ids.push(val)
})
} else ids.push(key)
this.delLoading = true