1.2.5.4 漏掉的路由

This commit is contained in:
xk_guohonglei
2021-01-28 13:54:52 +08:00
parent d2949e657a
commit 422843e0ac
8 changed files with 14 additions and 14 deletions

View File

@@ -70,7 +70,7 @@
for (let i = 2020; i <= date.getFullYear(); i++) {
years.push(i)
}
for (let i = 1; i <= month; i++) {
for (let i = 1; i <= 12; i++) {
months.push(i)
}
for (let i = 1; i <= 31; i++) {
@@ -78,15 +78,15 @@
}
return {
title: 'picker-view',
years: [new Date().getFullYear()],
year: new Date().getFullYear(),
years: years,
year: year,
months: months,
dialogModal: '',
month: month,
days: days,
day: day,
// value: [9999, month - 1, day - 1],
value: [0, month - 1, day - 1],
value: [year, month - 1, day - 1],
selDate: year + '-' + month + '-' + day,
detailData: [],
basicData: {

View File

@@ -66,7 +66,7 @@
for (let i = 2020; i <= date.getFullYear(); i++) {
years.push(i)
}
for (let i = 1; i <= month; i++) {
for (let i = 1; i <= 12; i++) {
months.push(i)
}
for (let i = 1; i <= 31; i++) {
@@ -74,15 +74,15 @@
}
return {
title: 'picker-view',
years: [new Date().getFullYear()],
year: new Date().getFullYear(),
years: years,
year: year,
months: months,
dialogModal: '',
month: month,
days: days,
day: day,
// value: [9999, month - 1, day - 1],
value: [0, month - 1, day - 1],
value: [year, month - 1, day - 1],
selDate: year + '-' + month,
detailData: [],
basicData: {