index.vue 4.0 KB

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