react(94)--时间搜索传值规范
Posted 小歌谣(公众号同名)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react(94)--时间搜索传值规范相关的知识,希望对你有一定的参考价值。
console.log(data, 'dataTime');
let startTimeLong = (data?.time && new Date(data?.time[0]).getTime()) || '';
let endTimeLong = (data?.time && new Date(data?.time[1]).getTime()) || '';
this.setState(
{
name: data?.name,
startTimeLong,
endTimeLong,
pageIndex: 1,
},
() => {
this.getStartList();
}
);
以上是关于react(94)--时间搜索传值规范的主要内容,如果未能解决你的问题,请参考以下文章