From 1f753e3d84e1d3f2bcc4fd76e2b838deb78b511a Mon Sep 17 00:00:00 2001
From: 也曾为你像超人 <1553592282@qq.com>
Date: Mon, 30 Oct 2023 11:50:19 +0800
Subject: [PATCH] 修复字典表详情页面搜索bug
---
ruoyi-ui/src/views/monitor/operlog/index.vue | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/ruoyi-ui/src/views/monitor/operlog/index.vue b/ruoyi-ui/src/views/monitor/operlog/index.vue
index 34a3ce3..988f983 100644
--- a/ruoyi-ui/src/views/monitor/operlog/index.vue
+++ b/ruoyi-ui/src/views/monitor/operlog/index.vue
@@ -1,6 +1,15 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+ <el-form-item label="操作地址" prop="operIp">
+ <el-input
+ v-model="queryParams.operIp"
+ placeholder="请输入操作地址"
+ clearable
+ style="width: 240px;"
+ @keyup.enter.native="handleQuery"
+ />
+ </el-form-item>
<el-form-item label="系统模块" prop="title">
<el-input
v-model="queryParams.title"
@@ -229,6 +238,7 @@
queryParams: {
pageNum: 1,
pageSize: 10,
+ operIp: undefined,
title: undefined,
operName: undefined,
businessType: undefined,
--
Gitblit v1.9.2