From 2116ee1822dc18d82ce6c1c0112d68e26be6bb83 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期一, 04 一月 2021 17:49:52 +0800 Subject: [PATCH] Update copyright --- ruoyi-ui/src/views/monitor/logininfor/index.vue | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ruoyi-ui/src/views/monitor/logininfor/index.vue b/ruoyi-ui/src/views/monitor/logininfor/index.vue index 9dee330..b83d138 100644 --- a/ruoyi-ui/src/views/monitor/logininfor/index.vue +++ b/ruoyi-ui/src/views/monitor/logininfor/index.vue @@ -1,6 +1,6 @@ <template> <div class="app-container"> - <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px"> + <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> <el-form-item label="鐧诲綍鍦板潃" prop="ipaddr"> <el-input v-model="queryParams.ipaddr" @@ -59,6 +59,7 @@ <el-col :span="1.5"> <el-button type="danger" + plain icon="el-icon-delete" size="mini" :disabled="multiple" @@ -69,6 +70,7 @@ <el-col :span="1.5"> <el-button type="danger" + plain icon="el-icon-delete" size="mini" @click="handleClean" @@ -78,12 +80,14 @@ <el-col :span="1.5"> <el-button type="warning" + plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['system:logininfor:export']" >瀵煎嚭</el-button> </el-col> + <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> </el-row> <el-table v-loading="loading" :data="list" @selection-change="handleSelectionChange"> @@ -91,7 +95,7 @@ <el-table-column label="璁块棶缂栧彿" align="center" prop="infoId" /> <el-table-column label="鐢ㄦ埛鍚嶇О" align="center" prop="userName" /> <el-table-column label="鐧诲綍鍦板潃" align="center" prop="ipaddr" width="130" :show-overflow-tooltip="true" /> - <el-table-column label="鐧诲綍鍦扮偣" align="center" prop="loginLocation" /> + <el-table-column label="鐧诲綍鍦扮偣" align="center" prop="loginLocation" :show-overflow-tooltip="true" /> <el-table-column label="娴忚鍣�" align="center" prop="browser" /> <el-table-column label="鎿嶄綔绯荤粺" align="center" prop="os" /> <el-table-column label="鐧诲綍鐘舵��" align="center" prop="status" :formatter="statusFormat" /> @@ -117,6 +121,7 @@ import { list, delLogininfor, cleanLogininfor, exportLogininfor } from "@/api/monitor/logininfor"; export default { + name: "Logininfor", data() { return { // 閬僵灞� @@ -125,6 +130,8 @@ ids: [], // 闈炲涓鐢� multiple: true, + // 鏄剧ず鎼滅储鏉′欢 + showSearch: true, // 鎬绘潯鏁� total: 0, // 琛ㄦ牸鏁版嵁 @@ -192,7 +199,7 @@ }).then(() => { this.getList(); this.msgSuccess("鍒犻櫎鎴愬姛"); - }).catch(function() {}); + }) }, /** 娓呯┖鎸夐挳鎿嶄綔 */ handleClean() { @@ -205,7 +212,7 @@ }).then(() => { this.getList(); this.msgSuccess("娓呯┖鎴愬姛"); - }).catch(function() {}); + }) }, /** 瀵煎嚭鎸夐挳鎿嶄綔 */ handleExport() { @@ -218,7 +225,7 @@ return exportLogininfor(queryParams); }).then(response => { this.download(response.msg); - }).catch(function() {}); + }) } } }; -- Gitblit v1.9.3