15815213711
2022-03-07 56f8b51c26bd1fb7e1fdc62acab5151cdf83c860
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<template>
   <div class="app-container">
      <el-form :model="queryParams" ref="queryRef" :inline="true" label-width="68px">
         <el-form-item label="登录地址" prop="ipaddr">
            <el-input
               v-model="queryParams.ipaddr"
               placeholder="请输入登录地址"
               clearable
               @keyup.enter="handleQuery"
            />
         </el-form-item>
         <el-form-item label="用户名称" prop="userName">
            <el-input
               v-model="queryParams.userName"
               placeholder="请输入用户名称"
               clearable
               @keyup.enter="handleQuery"
            />
         </el-form-item>
         <el-form-item>
            <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
            <el-button icon="Refresh" @click="resetQuery">重置</el-button>
         </el-form-item>
      </el-form>
      <el-table
         v-loading="pageF.loading"
         :data="onlineList"
         style="width: 100%;"
      >
         <el-table-column label="会话编号" align="center" prop="tokenId" :show-overflow-tooltip="true" />
         <el-table-column label="登录名称" align="center" prop="userName" :show-overflow-tooltip="true" />
         <el-table-column label="所属部门" align="center" prop="deptName" :show-overflow-tooltip="true" />
         <el-table-column label="主机" align="center" prop="ipaddr" :show-overflow-tooltip="true" />
         <el-table-column label="登录地点" align="center" prop="loginLocation" :show-overflow-tooltip="true" />
         <el-table-column label="操作系统" align="center" prop="os" :show-overflow-tooltip="true" />
         <el-table-column label="浏览器" align="center" prop="browser" :show-overflow-tooltip="true" />
         <el-table-column label="登录时间" align="center" prop="loginTime" width="180">
            <template #default="scope">
               <span>{{ proxy.parseTime(scope.row.loginTime) }}</span>
            </template>
         </el-table-column>
         <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
            <template #default="scope">
               <el-button
                  type="text"
                  icon="Delete"
                  @click="handleForceLogout(scope.row)"
                  v-hasPermi="['monitor:online:forceLogout']"
               >强退</el-button>
            </template>
         </el-table-column>
      </el-table>
 
      <pagination v-show="pageF.total > 0" :total="pageF.total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" />
   </div>
</template>
 
<script setup name="Online" lang="ts">
import { forceLogout, list as initData } from "@/api/monitor/online";
import useCurrentInstance from "@/utils/useCurrentInstance";
import {reactive, ref} from "vue";
import {ElForm} from "element-plus";
import { PageQueryInterface } from "@/utils/globalInterface";
 
const { proxy } = useCurrentInstance();
const queryRef = ref<InstanceType<typeof ElForm>>()
 
interface OnlineI{
  tokenId?:string,
  deptName?:string,
  userName?:string,
  ipaddr?:string,
  loginLocation?:string,
  browser?:string,
  os?:string,
  loginTime?:string,
}
const onlineList = ref<OnlineI[]>();
const pageF = reactive({
  loading:true,
  total:0,
 
})
 
const queryParams = ref<OnlineI&PageQueryInterface>({});
 
/** 查询登录日志列表 */
function getList() {
  pageF.loading = true;
  initData(queryParams.value).then(response => {
    onlineList.value = response.rows;
    pageF.total = response.total;
    pageF.loading = false;
  });
}
/** 搜索按钮操作 */
function handleQuery() {
  queryParams.value.pageNum = 1;
  getList();
}
/** 重置按钮操作 */
function resetQuery() {
  proxy.resetForm(queryRef.value);
  handleQuery();
}
/** 强退按钮操作 */
function handleForceLogout(row:OnlineI) {
    proxy.$modal.confirm('是否确认强退名称为"' + row.userName + '"的用户?').then(function () {
  return forceLogout(row.tokenId);
  }).then(() => {
    getList();
    proxy.$modal.msgSuccess("删除成功");
  }).catch(() => {});
}
 
getList();
</script>