Commit 2f56fc20 authored by Bill's avatar Bill

修改时间搜索bug

parent 831229f8
......@@ -65,8 +65,8 @@ const Advertisement = () => {
const postData = {
title: title || '',
status: status != 0 ? status : '',
startTime: st,
endTime: et,
startTime: st * 1000,
endTime: et * 1000,
current: 1,
pageSize: 10,
...params,
......
......@@ -96,8 +96,8 @@ const Infomation = () => {
title: title,
status: status != 0 ? status : '',
columnId: columnId,
startTime: st,
endTime: et,
startTime: st * 1000,
endTime: et * 1000,
current: 1,
pageSize: 10,
...params,
......
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