Skip to content

Commit

Permalink
!641 操作日志搜索参数名修改
Browse files Browse the repository at this point in the history
Merge pull request !641 from ligitee/N/A
  • Loading branch information
YunaiV authored and gitee-org committed Oct 14, 2023
2 parents 2826dbb + b93033e commit b75ad3d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/views/system/operatelog/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<doc-alert title="系统日志" url="https://doc.iocoder.cn/system-log/" />
<!-- 搜索工作栏 -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="系统模块" prop="title">
<el-input v-model="queryParams.title" placeholder="请输入系统模块" clearable style="width: 240px;"
<el-form-item label="系统模块" prop="module">
<el-input v-model="queryParams.module" placeholder="请输入系统模块" clearable style="width: 240px;"
@keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item label="操作人员" prop="operName">
<el-input v-model="queryParams.operName" placeholder="请输入操作人员" clearable style="width: 240px;"
<el-form-item label="操作人员" prop="userNickname">
<el-input v-model="queryParams.userNickname" placeholder="请输入操作人员" clearable style="width: 240px;"
@keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item label="类型" prop="type">
Expand Down Expand Up @@ -154,8 +154,8 @@ export default {
queryParams: {
pageNo: 1,
pageSize: 10,
title: undefined,
operName: undefined,
module: undefined,
userNickname: undefined,
businessType: undefined,
status: undefined,
startTime: []
Expand Down

0 comments on commit b75ad3d

Please sign in to comment.