Commit 84b6d6dad4f43f1279a16f22eaadb57f6499b6b4
1 parent
b8b51ef1
feat: 生产科固定成本放宽到2020年。
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/project/config/ProduCostCreate.vue
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | // Generate year options from 2023 to current year |
65 | 65 | const currentYear = new Date().getFullYear(); |
66 | 66 | const yearOptions = ref<string[]>([]); |
67 | - for (let y = 2023; y <= currentYear; y++) { | |
67 | + for (let y = 2020; y <= currentYear; y++) { | |
68 | 68 | yearOptions.value.push(y.toString()); |
69 | 69 | } |
70 | 70 | const ratio = ref(); | ... | ... |