如何使用日期选择器过滤起始日期和结束日期之间的详细信息?
getFromToday(){
const showPrvMonth = new Date();
const todaysDate = new Date();
showPrvMonth.setMonth(todaysDate.getMonth());
//showPrvMonth.setDate(new Date(new Date().getFullYear(), new Date().getMonth(), 1).getDate());
showPrvMonth.setDate(todaysDate.getDate());
const hideFutureDate = showPrvMonth.toISOString().split('T')[0];
if(this.orederHistorySearchCriteriaForm.controls.fromDate.valid){
this.dateDisable = true;
}
我希望这会有所帮助,否则,我可以提供一些更详细的信息,说明我希望在哪些地方进行更改以使用日期范围来获取详细信息。