From e235d5aa57314fbad9d30a77bab14bf917edb133 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期五, 11 十月 2019 10:50:47 +0800 Subject: [PATCH] 新增在线用户 --- ruoyi-ui/src/views/monitor/online/index.vue | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 118 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/monitor/online/index.vue b/ruoyi-ui/src/views/monitor/online/index.vue index 764613a..17104de 100644 --- a/ruoyi-ui/src/views/monitor/online/index.vue +++ b/ruoyi-ui/src/views/monitor/online/index.vue @@ -1,5 +1,121 @@ <template> <div class="app-container"> - 在线用户 + <el-form :inline="true"> + <el-form-item label="登录地址"> + <el-input + v-model="queryParams.ipaddr" + placeholder="请输入登录地址" + clearable + size="small" + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="用户名称"> + <el-input + v-model="queryParams.userName" + placeholder="请输入用户名称" + clearable + size="small" + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item> + <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> + </el-form-item> + </el-form> + + <el-table + v-loading="loading" + :data="list.slice((pageNum-1)*pageSize,pageNum*pageSize)" + style="width: 100%;" + > + <el-table-column label="序号" type="index" align="center"> + <template slot-scope="scope"> + <span>{{(pageNum - 1) * pageSize + scope.$index + 1}}</span> + </template> + </el-table-column> + <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" /> + <el-table-column label="主机" align="center" prop="ipaddr" :show-overflow-tooltip="true" /> + <el-table-column label="登录地点" align="center" prop="loginLocation" /> + <el-table-column label="浏览器" align="center" prop="browser" /> + <el-table-column label="操作系统" align="center" prop="os" /> + <el-table-column label="登录时间" align="center" prop="loginTime" width="180"> + <template slot-scope="scope"> + <span>{{ parseTime(scope.row.loginTime) }}</span> + </template> + </el-table-column> + <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> + <template slot-scope="scope"> + <el-button + size="mini" + type="text" + icon="el-icon-delete" + @click="handleForceLogout(scope.row)" + v-hasPermi="['monitor:online:forceLogout']" + >强退</el-button> + </template> + </el-table-column> + </el-table> + + <pagination v-show="total>0" :total="total" :page.sync="pageNum" :limit.sync="pageSize" /> </div> -</template> \ No newline at end of file +</template> + +<script> +import { list, forceLogout } from "@/api/monitor/online"; + +export default { + data() { + return { + // 遮罩层 + loading: true, + // 总条数 + total: 0, + // 表格数据 + list: [], + pageNum: 1, + pageSize: 10, + // 查询参数 + queryParams: { + ipaddr: undefined, + userName: undefined + } + }; + }, + created() { + this.getList(); + }, + methods: { + /** 查询登录日志列表 */ + getList() { + this.loading = true; + list(this.queryParams).then(response => { + this.list = response.rows; + this.total = response.total; + this.loading = false; + }); + }, + /** 搜索按钮操作 */ + handleQuery() { + this.pageNum = 1; + this.getList(); + }, + /** 强退按钮操作 */ + handleForceLogout(row) { + this.$confirm('是否确认强退名称为"' + row.userName + '"的数据项?', "警告", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning" + }).then(function() { + return forceLogout(row.tokenId); + }).then(() => { + this.getList(); + this.msgSuccess("强退成功"); + }).catch(function() {}); + } + } +}; +</script> + -- Gitblit v1.9.2