前端
this.createdTime = response.createdTime; // 获取到时间的值
const onLineDate = '2023-04-11 23:00:00';
if (moment(this.createdTime) > moment(onLineDate)){ // 比较大小
this.setState({show:false}); // 设置某个模块不显示
}else{
this.setState({show:true}); // 设置某个模块显示
}
后端
// i是正值 代表左侧日期大于右侧日期
int i = project.getCreatedTime().compareTo(DateUtil.parseDateTime("2023-04-11 23:00:00"));