From 4ac7a1aa1fe3abc3d59b8ce1d417f2bc8ad215d4 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期二, 15 八月 2023 11:31:38 +0800 Subject: [PATCH] 升级commons.io到最新版本2.13.0 --- ruoyi-ui/src/views/monitor/online/index.vue | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ruoyi-ui/src/views/monitor/online/index.vue b/ruoyi-ui/src/views/monitor/online/index.vue index ab66827..64411ef 100644 --- a/ruoyi-ui/src/views/monitor/online/index.vue +++ b/ruoyi-ui/src/views/monitor/online/index.vue @@ -1,12 +1,11 @@ <template> <div class="app-container"> - <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px"> + <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px"> <el-form-item label="登录地址" prop="ipaddr"> <el-input v-model="queryParams.ipaddr" placeholder="请输入登录地址" clearable - size="small" @keyup.enter.native="handleQuery" /> </el-form-item> @@ -15,7 +14,6 @@ v-model="queryParams.userName" placeholder="请输入用户名称" clearable - size="small" @keyup.enter.native="handleQuery" /> </el-form-item> @@ -111,7 +109,7 @@ }, /** 强退按钮操作 */ handleForceLogout(row) { - this.$modal.confirm('是否确认强退名称为"' + row.userName + '"的数据项?').then(function() { + this.$modal.confirm('是否确认强退名称为"' + row.userName + '"的用户?').then(function() { return forceLogout(row.tokenId); }).then(() => { this.getList(); -- Gitblit v1.9.2