最近公司提了一个新需求,要按月计算周(2021.12 第一周(01 - 06)),本来想百度求助,偷个懒求助一下网上的大佬,结果找到很多按年算的,最后没办法 自己写了一套

效果图

1、首先,先获取当前月份的第一天和最后一天,然后再获取第一天对应的是周几,根据对应的周几,做循环便利,本月天数总计有几周,然后保存每周周一和周日对应的日期

/**计算每个月有几周*/
const weekMethods = (date) => {let fristDay = date;let endDay = getCurrentMonthLastDay(fristDay).getDate();let dayArr = [];let week = fristDay.getDay();if (week == 0) {dayArr = test(endDay, 6, dayArr);} else if (week == 1) {dayArr = test(endDay, 5, dayArr);} else if (week == 2) {dayArr = test(endDay, 4, dayArr);} else if (week == 3) {dayArr = test(endDay, 3, dayArr);} else if (week == 4) {dayArr = test(endDay, 2, dayArr);} else if (week == 5) {dayArr = test(endDay, 1, dayArr);} else if (week == 6) {dayArr = test(endDay, 0, dayArr);}return dayArr;
};const test = (endDay, num, arr) => {if (num != 6) {arr.push({startDay: "01",endDay: "0" + (1 + num)})} else {arr.push({startDay: "01",endDay: "07"})}for (let i = 1 + num + 1; i < endDay + 1; i = i + 7) {let obj = {};if (i == endDay) {obj = {startDay: i,endDay: i};} else if (i + 6 > endDay) {obj = {startDay: i,endDay: endDay};} else {obj = {startDay: i > 10 ? i : "0" + i,endDay: i + 6 > 10 ? i + 6 : "0" + (i + 6)};}arr.push(obj);}arr.forEach((item, index) => {item.text = "第" + (index + 1) + "周(" + item.startDay + "-" + item.endDay + ")"item.value = index + 1})return arr;
};/*** 获取当前月的最后一天* */
const getCurrentMonthLastDay = (date) => {// let date = new Date();let currentMonth = date.getMonth();let nextMonth = ++currentMonth;let nextMonthFirstDay = new Date(date.getFullYear(), nextMonth, 1);let oneDay = 1000 * 60 * 60 * 24;let lastTime = new Date(nextMonthFirstDay - oneDay);return lastTime;
};

2、既然能获取每个月对应的周数,那一年有12个月,就可以按年便利周数了

/*** 年循环*/
const yearLoop = (minDate, maxDate) => {let yearArr = [];if (!minDate) {minDate = new Date().getFullYear() - 5;}if (!maxDate) {maxDate = minDate + 10;}for (let i = minDate; i < maxDate; i++) {yearArr.push({text: i + "年",value: i,children: monthLoop(i),});}return yearArr
};
/**** 根据月循环*/const monthLoop = (year) => {let month = [];for (let i = 1; i < 13; i++) {month.push({text: i + "月",value: i >9 ? i : '0' + i});}month.forEach((item, index) => {let date = new Date(year, index, 1);item.children = weekMethods(date);});return month
};

最后获取的数据结构就是这样的

[{"text":"2021年","value":2021,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":28,"text":"第5周(28-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":30,"text":"第5周(27-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]}]},{"text":"2022年","value":2022,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":28,"text":"第5周(27-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":30,"text":"第5周(27-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]}]},{"text":"2023年","value":2023,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":28,"text":"第5周(26-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]}]},{"text":"2024年","value":2024,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":29,"text":"第5周(25-29)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":30,"text":"第5周(29-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]}]},{"text":"2025年","value":2025,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":28,"text":"第5周(23-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":30,"text":"第5周(27-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":30,"text":"第5周(29-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]}]},{"text":"2026年","value":2026,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":30,"text":"第5周(27-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":30,"text":"第5周(29-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]}]},{"text":"2027年","value":2027,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":28,"text":"第5周(28-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":30,"text":"第5周(27-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]}]},{"text":"2028年","value":2028,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":29,"text":"第5周(27-29)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":30,"text":"第5周(26-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]}]},{"text":"2029年","value":2029,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":28,"text":"第5周(25-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":30,"text":"第5周(29-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":30,"text":"第5周(25-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":31,"text":"第6周(30-31)","value":6}]}]},{"text":"2030年","value":2030,"children":[{"text":"1月","value":"01","children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"2月","value":"02","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":28,"text":"第5周(24-28)","value":5}]},{"text":"3月","value":"03","children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5},{"startDay":31,"endDay":31,"text":"第6周(31-31)","value":6}]},{"text":"4月","value":"04","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":30,"text":"第5周(28-30)","value":5}]},{"text":"5月","value":"05","children":[{"startDay":"01","endDay":"04","text":"第1周(01-04)","value":1},{"startDay":"05","endDay":11,"text":"第2周(05-11)","value":2},{"startDay":12,"endDay":18,"text":"第3周(12-18)","value":3},{"startDay":19,"endDay":25,"text":"第4周(19-25)","value":4},{"startDay":26,"endDay":31,"text":"第5周(26-31)","value":5}]},{"text":"6月","value":"06","children":[{"startDay":"01","endDay":"01","text":"第1周(01-01)","value":1},{"startDay":"02","endDay":"08","text":"第2周(02-08)","value":2},{"startDay":"09","endDay":15,"text":"第3周(09-15)","value":3},{"startDay":16,"endDay":22,"text":"第4周(16-22)","value":4},{"startDay":23,"endDay":29,"text":"第5周(23-29)","value":5},{"startDay":30,"endDay":30,"text":"第6周(30-30)","value":6}]},{"text":"7月","value":"07","children":[{"startDay":"01","endDay":"06","text":"第1周(01-06)","value":1},{"startDay":"07","endDay":13,"text":"第2周(07-13)","value":2},{"startDay":14,"endDay":20,"text":"第3周(14-20)","value":3},{"startDay":21,"endDay":27,"text":"第4周(21-27)","value":4},{"startDay":28,"endDay":31,"text":"第5周(28-31)","value":5}]},{"text":"8月","value":"08","children":[{"startDay":"01","endDay":"03","text":"第1周(01-03)","value":1},{"startDay":"04","endDay":"010","text":"第2周(04-010)","value":2},{"startDay":11,"endDay":17,"text":"第3周(11-17)","value":3},{"startDay":18,"endDay":24,"text":"第4周(18-24)","value":4},{"startDay":25,"endDay":31,"text":"第5周(25-31)","value":5}]},{"text":"9月","value":"09","children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":30,"text":"第5周(29-30)","value":5}]},{"text":"10月","value":10,"children":[{"startDay":"01","endDay":"05","text":"第1周(01-05)","value":1},{"startDay":"06","endDay":12,"text":"第2周(06-12)","value":2},{"startDay":13,"endDay":19,"text":"第3周(13-19)","value":3},{"startDay":20,"endDay":26,"text":"第4周(20-26)","value":4},{"startDay":27,"endDay":31,"text":"第5周(27-31)","value":5}]},{"text":"11月","value":11,"children":[{"startDay":"01","endDay":"02","text":"第1周(01-02)","value":1},{"startDay":"03","endDay":"09","text":"第2周(03-09)","value":2},{"startDay":"010","endDay":16,"text":"第3周(010-16)","value":3},{"startDay":17,"endDay":23,"text":"第4周(17-23)","value":4},{"startDay":24,"endDay":30,"text":"第5周(24-30)","value":5}]},{"text":"12月","value":12,"children":[{"startDay":"01","endDay":"07","text":"第1周(01-07)","value":1},{"startDay":"08","endDay":14,"text":"第2周(08-14)","value":2},{"startDay":15,"endDay":21,"text":"第3周(15-21)","value":3},{"startDay":22,"endDay":28,"text":"第4周(22-28)","value":4},{"startDay":29,"endDay":31,"text":"第5周(29-31)","value":5}]}]}]

 

 里面对应的字段可以根据自己需求改动,这个是为了配合vant ui的Picker 选择器而设定的

 

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. 【linux】工作中用到的命令总结

    全局替换tab为| %s/\t/|/g...

    2024/5/3 6:21:14
  2. 【数据结构--队列】

    队列队列的逻辑结构顺序队列的存储结构循环队列的存储结构及实现循环队列如何判定队空和队满循环队列的实现循环队列的类定义成员函数的实现队列的连接存储结构及实现链队列的实现链队列的类定义成员函数的实现队列的逻辑结构 队列(queue)是只允许在一端进行插入操作&#xff…...

    2024/5/4 1:31:18
  3. leetcode刷题:反转链表II

    题目&#xff1a; 分析&#xff1a; 可以用使用双指针头插法 1、我们定义两个指针&#xff0c;分别称之为 g(guard 守卫) 和 p(point)。 我们首先根据方法的参数 m 确定 g 和 p 的位置。将 g 移动到第一个要反转的节点的前面&#xff0c;将 p 移动到第一个要反转的节点的位置上…...

    2024/5/4 18:10:14
  4. git 拉取上游仓库tag并同步

    git remote add upstream https://github.com/xxxx/xxxx.git git fetch upstream tag vX.X git tag git push origin refs/tags/vX.X:refs/tags/vX.X...

    2024/4/30 20:56:08
  5. 【LeetCode 15】15.三数之和

    15.三数之和 文章目录15.三数之和一、题意二、思考过程哈希解法三、完整代码一、题意 二、思考过程 哈希解法 使用两层for循环就可以确定 a 和b 的数值&#xff0c;哈希法来确定 0-(ab) 是否在 数组里出现过。 //找出abc0 //anums[i],bnums[j],c-(ab) 三、完整代码 class So…...

    2024/4/30 21:07:41
  6. TortoiseGit对号突然没有了,如何解决?

    TortoiseGit的对号突然没有了&#xff0c;如何解决&#xff1f; 解决办法 按WinR键打开运行对话框&#xff0c;输入 regedit&#xff1b;查看注册表&#xff1b; 查看注册表&#xff1a; \HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIcon…...

    2024/5/4 21:06:50
  7. 利用边缘灰度变化建模,来优化圆环直径求取精度

    简 介&#xff1a; 利用对所获得的圆环边缘亮度平均变化曲线&#xff0c;利用Sigmoid函数进行建模逼近&#xff0c;可以对原来经由HoughCircle所获得的半径进行补偿。对于利用扫描仪所获得的图片进行实际处理&#xff0c;可以看到它可以获得与利用轮廓面积所测量的结果精度接近…...

    2024/5/4 8:09:13
  8. 数据分析实战(六):Python 数据清洗 —— XX

    版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。 文章目录一、XX一、XX 版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。...

    2024/5/4 17:38:15
  9. 太久不用,忘记数组写法,写一遍巩固

    CenterListDTO[] select_sousinKeiroCenterListDTO new CenterListDTO[1]; // 定义数组并指定大小CenterListDTO dto new CenterListDTO(); // 做一条数据dto.setCenterCode("aa");dto.setCenterName("bb");select_sousinKeiroCenterListDTO[0] dto; //…...

    2024/5/4 15:42:48
  10. python 安装pandas库

    1. 打开cmd 2.输入 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas 3.安装成功 4.打开pycharm就可以用了...

    2024/5/4 2:58:37
  11. LINUX查看OpenGL信息

    安装工具 sudo apt install -y mesa-utils 查看1 $ glxinfo | grep "OpenGL version" OpenGL version string: 3.1 Mesa 20.0.8 查看2 $ glxinfo | grep "version" server glx version string: 1.4 client glx version string: 1.4 GLX version: 1.4Max …...

    2024/5/4 11:32:51
  12. 一款taro内可用的canvas截图插件

    一款taro内可用的canvas截图插件 一款taro内可用的canvas截图插件...

    2024/5/3 22:00:26
  13. 数据分析实战(四):Python 数据清洗 —— XX

    版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。 文章目录一、XX一、XX 版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。...

    2024/5/1 7:34:17
  14. Nginx 下限定只能访问某个目录

    location / {#开放upload目录location /upload/ {break;}return 404;} 这样请求upload以外的目录就是404 爱资料工具-好用的在线工具箱https://www.toolnb.com/...

    2024/5/4 21:39:39
  15. java建立工程流程

    ...

    2024/5/4 18:53:05
  16. Description: No bean of type ‘org.apache.shiro.realm.Realm‘ found. Action: Please create bean of

    Description: No bean of type ‘org.apache.shiro.realm.Realm’ found. Action: Please create bean of type ‘Realm’ or add a shiro.ini in the root classpath (src/main/resources/shiro.ini) or in the META-INF folder (src/main/resources/META-INF/shiro.ini). 在…...

    2024/5/4 10:07:17
  17. vue中常用注释模板

    /*** 获取事件在列表中的位置* param context* param callback* private*/ _evIndex(event, context, callback) {let index -1;for (let i 0; i < event.length; i) {if (event[i].context contex && event[i].callback callback) {index i;break;}}return in…...

    2024/5/2 0:41:06
  18. C# 获取文件编码格式

    C# 获取文件编码格式 添加类&#xff1a; public class FileEncoding{/// <summary> /// 给定文件的路径&#xff0c;读取文件的二进制数据&#xff0c;判断文件的编码类型 /// </summary> /// <param name“FILE_NAME“>文件路径</param> /// <r…...

    2024/4/30 20:56:48
  19. 1034 有理数四则运算 (20 分)

    本题要求编写程序&#xff0c;计算 2 个有理数的和、差、积、商。 输入格式&#xff1a; 输入在一行中按照 a1/b1 a2/b2 的格式给出两个分数形式的有理数&#xff0c;其中分子和分母全是整型范围内的整数&#xff0c;负号只可能出现在分子前&#xff0c;分母不为 0。 输出格式&…...

    2024/4/27 17:53:47
  20. 作业: 写一个递归函数,输入一个非负整数,返回组成它的数字之和

    #define _CRT_SECURE_NO_WARNINGS 1 //写一个递归函数DigitSum(n)&#xff0c;输入一个非负整数&#xff0c;返回组成它的数字之和 //例如&#xff0c;调用DigitSum(1729)&#xff0c;则应该返回1729&#xff0c;它的和是19。 #include<stdio.h> int DigitSum(int i) {if…...

    2024/5/3 23:05:42

最新文章

  1. vue中$nextTick用法

    $nextTick 是 Vue.js 提供的一个方法&#xff0c;它用于延迟执行一段代码&#xff0c;直到 Vue 完成当前的 DOM 更新。这在处理 DOM 操作或依赖 DOM 状态的代码时特别有用&#xff0c;因为 Vue 是异步执行 DOM 更新的。 用法&#xff1a; javascript this.$nextTick(callbac…...

    2024/5/5 19:11:44
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. A股企业数据要素利用水平数据集(2001-2022年)

    参照史青春&#xff08;2023&#xff09;的做法&#xff0c;团队对上市公司-数据要素利用水平进行测算。统计人工智能技术、区块链技术、云计算技术、大数据技术、大数据技术应用五项指标在企业年报中的披露次数&#xff0c;求和后衡量数据要素投入水平。 一、数据介绍 数据名…...

    2024/5/5 1:29:41
  4. Vue3学习笔记+报错记录

    文章目录 1.创建Vue3.0工程1.1使用vue-cli创建1.2 使用vite创建工程1.3.分析Vue3工程结构 2.常用Composition2.1 拉开序幕的setup2.2 ref函数_处理基本类型2.3 ref函数_处理对象类型2.4 ref函数使用总结 1.创建Vue3.0工程 1.1使用vue-cli创建 查看vue/cli版本&#xff0c;确保…...

    2024/5/4 13:03:24
  5. ElasticSearch的DSL查询

    ElasticSearch的DSL查询 准备工作 创建测试方法&#xff0c;初始化测试结构。 import org.apache.http.HttpHost; import org.apache.lucene.search.TotalHits; import org.elasticsearch.action.search.SearchRequest; import org.elasticsearch.action.search.SearchRespo…...

    2024/5/4 14:37:43
  6. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/5/4 23:54:56
  7. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/5/4 23:54:56
  8. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/5/4 23:54:56
  9. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/5/4 23:55:17
  10. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/5/4 23:54:56
  11. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/5/4 23:55:05
  12. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/5/4 23:54:56
  13. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/5/4 23:55:16
  14. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/5/4 23:54:56
  15. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/5/4 18:20:48
  16. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/5/4 23:54:56
  17. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/5/4 23:55:17
  18. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/5/4 23:55:06
  19. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/5/4 23:54:56
  20. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/5/4 23:55:06
  21. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/5/5 8:13:33
  22. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/5/4 23:55:16
  23. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/5/4 23:54:58
  24. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/5/4 23:55:01
  25. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/5/4 23:54:56
  26. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  27. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  28. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  29. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  30. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  31. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  32. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  33. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  34. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  35. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  36. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  37. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  38. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  39. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  40. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  41. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  42. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  43. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  44. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  45. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57