Commit fcd5ddc5 authored by Maofei94's avatar Maofei94

Merge branch 'master' of g.civnet.cn:ReactWeb5/maintenance

parents 3e9813e2 a0bf59bd
......@@ -77,7 +77,7 @@ const ServiceLog = () => {
const getData = () => {
post(`${PUBLISH_SERVICE}/LogCenter/GetLoginLog`, {
PageIndex: 1,
PageSize: 200,
PageSize: 1000,
DateFrom: startTime.format('YYYY-MM-DD HH:mm:ss'),
DateTo: endTime.format('YYYY-MM-DD HH:mm:ss'),
IP: '',
......
......@@ -71,9 +71,9 @@ const ServiceLog = () => {
key: 'CallTime',
},
{
title: '访问者IP',
dataIndex: 'IP',
key: 'IP',
title: 'IP',
dataIndex: 'DownstreamRequest',
key: 'DownstreamRequest',
},
{
title: '返回状态',
......@@ -153,7 +153,8 @@ const ServiceLog = () => {
const getData = (url, set) => {
post(`${PUBLISH_SERVICE}/LogCenter${url}`, {
// 获取日志表数据时PageSize设置为200,其他接口默认值20
PageSize: url === '/GetOMSLog' ? 200 : 20,
PageIndex: 1,
PageSize: url === '/GetOMSLog' ? 1000 : 20,
DateFrom: startTime.format('YYYY-MM-DD HH:mm:ss'),
DateTo: endTime.format('YYYY-MM-DD HH:mm:ss'),
IP: '',
......
......@@ -71,9 +71,9 @@ const ServiceLog = () => {
key: 'CallTime',
},
{
title: '访问者IP',
dataIndex: 'IP',
key: 'IP',
title: 'IP',
dataIndex: 'DownstreamRequest',
key: 'DownstreamRequest',
},
{
title: '返回状态',
......@@ -153,7 +153,8 @@ const ServiceLog = () => {
const getData = (url, set) => {
post(`${PUBLISH_SERVICE}/LogCenter${url}`, {
// 获取日志表数据时PageSize设置为200,其他接口默认值20
PageSize: url === '/GetOMSLog' ? 200 : 20,
PageIndex: 1,
PageSize: url === '/GetOMSLog' ? 1000 : 20,
DateFrom: startTime.format('YYYY-MM-DD HH:mm:ss'),
DateTo: endTime.format('YYYY-MM-DD HH:mm:ss'),
IP: '',
......
Markdown is supported
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