فهرست منبع

手持-收货设置时间区间 2000~2099

fengyanglei 8 ماه پیش
والد
کامیت
44f796c12a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/views/inbound/takeDelivery/components/LotDate.vue

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

@@ -24,7 +24,7 @@ const currentDate = ref([today.getFullYear(), today.getMonth() + 1, today.getDat
 // 最小日期为当前日期前三年
 const minDate = computed(() => {
   const date = new Date(today)
-  date.setFullYear(today.getFullYear() - 20) // 当前日期减去3年
+  date.setFullYear(today.getFullYear() - 25) // 当前日期减去3年
   return date
 })
 // 最大日期为当前日期后8年