js获取本周周一时间,本月第一天时间

获取本周周一时间,本月第一天时间

这段代码为在iview-admin中的时间选择器的默认值相关设置

shortcuts: [
          {
     
            text: '本周',
            value () {
     
              const end = new Date();
              //new Date(new Date() - (new Date().getDay() - 1) * 86400000)获取本周周一时间
              const start = new Date(new Date() - (new Date().getDay() - 1) * 86400000);
              return [start, end];
            }
          },
          {
     
            text: '本月',
            value () {
     
              const end = new Date();
              //new Date(new Date().getYear(), new Date().getMonth(), 1)获取本月第一天时间
              const start = new Date(new Date().getYear(), new Date().getMonth(), 1);
              return [start, end];
            }
          }
        ]

你可能感兴趣的:(iview-admin,iview-admin,javascript,本周一时间,本月月初时间)