"docs/git@ustchcs.com:gujinli1118/jeepay.git" did not exist on "3ad69e9a299ea4ffed86929b347eadacc464dca8"
Commit fcdecf25 authored by 季圣华's avatar 季圣华
Browse files

优化日志查询

parent 6f2bcf7f
...@@ -28,6 +28,11 @@ ...@@ -28,6 +28,11 @@
</a-form-item> </a-form-item>
</a-col> </a-col>
<template v-if="toggleSearchStatus"> <template v-if="toggleSearchStatus">
<a-col :md="6" :sm="24">
<a-form-item label="操作员" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input placeholder="请输入操作员账号或姓名" v-model="queryParam.userInfo"></a-input>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24"> <a-col :md="6" :sm="24">
<a-form-item label="操作IP" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-form-item label="操作IP" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input placeholder="请输入操作IP" v-model="queryParam.clientIp"></a-input> <a-input placeholder="请输入操作IP" v-model="queryParam.clientIp"></a-input>
...@@ -96,6 +101,7 @@ ...@@ -96,6 +101,7 @@
operation:'', operation:'',
content:'', content:'',
createTimeRange:[], createTimeRange:[],
userInfo: '',
clientIp:'', clientIp:'',
status:'' status:''
}, },
...@@ -114,7 +120,8 @@ ...@@ -114,7 +120,8 @@
}, },
{title: '操作模块', dataIndex: 'operation', width: 120}, {title: '操作模块', dataIndex: 'operation', width: 120},
{title: '操作详情', align:"left", dataIndex: 'content', scopedSlots: { customRender: 'content' }, width: 350 }, {title: '操作详情', align:"left", dataIndex: 'content', scopedSlots: { customRender: 'content' }, width: 350 },
{title: '操作人员', dataIndex: 'userName', width: 100, align: "center"}, {title: '操作员账号', dataIndex: 'loginName', width: 80, align: "center"},
{title: '操作员姓名', dataIndex: 'userName', width: 80, align: "center"},
{ {
title: '操作状态', dataIndex: 'status',width:80, align:"center", title: '操作状态', dataIndex: 'status',width:80, align:"center",
customRender:function (text) { customRender:function (text) {
...@@ -126,7 +133,7 @@ ...@@ -126,7 +133,7 @@
} }
}, },
{title: '操作IP', dataIndex: 'clientIp', width: 110, align: "center"}, {title: '操作IP', dataIndex: 'clientIp', width: 110, align: "center"},
{title: '操作时间', dataIndex: 'createTimeStr', width: 150, align: "center"} {title: '操作时间', dataIndex: 'createTimeStr', width: 120, align: "center"}
], ],
operateColumn: operateColumn:
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment