如何使用日期选择器筛选出详细信息(从date到date)

时间:2019-07-23 13:17:49

标签: angular

如何使用日期选择器过滤起始日期和结束日期之间的详细信息?

 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;
    }

我希望这会有所帮助,否则,我可以提供一些更详细的信息,说明我希望在哪些地方进行更改以使用日期范围来获取详细信息。

0 个答案:

没有答案