Selaa lähdekoodia

收货-设置日期最早为2000年

zhaohuanhuan 3 kuukautta sitten
vanhempi
commit
8dc99d2816
1 muutettua tiedostoa jossa 1 lisäystä ja 5 poistoa
  1. 1 5
      src/views/inbound/takeDelivery/components/LotDate.vue

+ 1 - 5
src/views/inbound/takeDelivery/components/LotDate.vue

@@ -22,11 +22,7 @@ const title=ref('选择日期')
 const today = new Date()
 const currentDate = ref([today.getFullYear(), today.getMonth() + 1, today.getDate()])
 // 最小日期为当前日期前三年
-const minDate = computed(() => {
-  const date = new Date(today)
-  date.setFullYear(today.getFullYear() - 20) // 当前日期减去3年
-  return date
-})
+const minDate = new Date(2000, 0, 1)
 // 最大日期为当前日期后8年
 const maxDate = computed(() => {
   const date = new Date(today)