You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
299 B
17 lines
299 B
3 months ago
|
import {getWeek} from "/@/utils/formatTime";
|
||
|
|
||
|
getWeek("2024-02-22");
|
||
|
|
||
|
|
||
|
let date = new Date("2024-02-22");
|
||
|
let year = date.getFullYear();
|
||
|
date.setMonth(0);
|
||
|
date.setDate(1);
|
||
|
let day = date.getDay();
|
||
|
if(day == 6){
|
||
|
day = -1;
|
||
|
}
|
||
|
|
||
|
date.setDate(6 - day);// 第一个星期五
|
||
|
|
||
|
console.log("date: ", date);
|