This commit is contained in:
jxxghp
2023-08-29 12:11:09 +08:00
parent 1cc64c7d21
commit 909857f146
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ const transferForm = reactive({
// 生成1到50季的下拉框选项
const seasonItems = ref(
Array.from({ length: 50 }, (_, i) => i + 1).map(item => ({
Array.from({ length: 51 }, (_, i) => i).map(item => ({
title: `${item}`,
value: item,
})),