This commit is contained in:
theluyuan 2020-12-07 14:09:59 +08:00
parent fb3389024d
commit 32a64be86f

View File

@ -87,14 +87,14 @@ export function getweek(time: string, id: string,zhou?: number){
console.log(now, 11111)
if(zhou != undefined){
now = now.day(now.day() + (zhou * 6));
now = now.day(now.day() + (zhou * 7));
}
const yue = (now.month() + 1 < 10 ? '0' + (now.month() + 1) : (now.month() + 1));
const day = now.date() // 当前天
zhou = now.day(); // 当前周几
const year = now.year()
const startd = now.day(0).date();
const start = `${year}-${yue}-${startd > 9 ? startd : '0' + startd}`
const startd = now.day(0);
const start = `${startd.year()}-${(startd.month() + 1 < 10 ? '0' + (startd.month() + 1) : (startd.month() + 1))}-${startd.date() > 9 ? startd.date() : '0' + startd.date()}`
interface Date{
day: string;
list?: Array<any>;