Commit 84b6d6dad4f43f1279a16f22eaadb57f6499b6b4

Authored by chenhang4442024
1 parent b8b51ef1

feat: 生产科固定成本放宽到2020年。

src/views/project/config/ProduCostCreate.vue
@@ -64,7 +64,7 @@ @@ -64,7 +64,7 @@
64 // Generate year options from 2023 to current year 64 // Generate year options from 2023 to current year
65 const currentYear = new Date().getFullYear(); 65 const currentYear = new Date().getFullYear();
66 const yearOptions = ref<string[]>([]); 66 const yearOptions = ref<string[]>([]);
67 - for (let y = 2023; y <= currentYear; y++) { 67 + for (let y = 2020; y <= currentYear; y++) {
68 yearOptions.value.push(y.toString()); 68 yearOptions.value.push(y.toString());
69 } 69 }
70 const ratio = ref(); 70 const ratio = ref();