Commit 07618c2e by Sxy

fix: 日志筛选时间范围

parent b11affbb
......@@ -59,6 +59,10 @@ class LogClient {
if (resultInfo) {
query.resultInfo = resultInfo;
}
if (created_at && created_at[0] && created_at[1]) {
query.startTime = new Date(created_at[0]).getTime();
query.entTime = new Date(created_at[1]).getTime();
}
// {
// "opTitle": "",// N 操作的业务标题
// "indexName": "sytxpublic-msgq-request",// Y es索引值,同一个项目用一个值
......
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