From a90355eb5e2db04e7c197d9051fd6cd92e2e6eb1 Mon Sep 17 00:00:00 2001
From: 若依 <yzz_ivy@163.com>
Date: Tue, 28 Nov 2023 11:54:05 +0800
Subject: [PATCH] !791 优化白名单页面放行逻辑 Merge pull request !791 from 也曾为你像超人/N/A
---
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