Commit 9f54ea97 by wufan

fix:修复永华管理时间筛选页码问题

parent 4c2e6156
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: wufan * @Author: wufan
* @Date: 2020-11-30 10:47:38 * @Date: 2020-11-30 10:47:38
* @LastEditors: wufan * @LastEditors: wufan
* @LastEditTime: 2020-12-10 10:30:45 * @LastEditTime: 2020-12-10 11:02:11
* @Description: 用户管理页面 * @Description: 用户管理页面
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有 * @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
*/ */
...@@ -135,7 +135,7 @@ function UserManagePage() { ...@@ -135,7 +135,7 @@ function UserManagePage() {
const _query = _.clone(query); const _query = _.clone(query);
_query.registerBegin = dates ? dates[0].startOf("day").valueOf() : null; _query.registerBegin = dates ? dates[0].startOf("day").valueOf() : null;
_query.registerEnd = dates ? dates[1].endOf("day").valueOf() : null; _query.registerEnd = dates ? dates[1].endOf("day").valueOf() : null;
_query.current = 1; _query.current = 0;
setQuery({ setQuery({
..._query ..._query
}); });
......
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