Compare commits
2 Commits
9f29161981
...
9699c2ca86
Author | SHA1 | Date |
---|---|---|
|
9699c2ca86 | |
|
1c7db67e5d |
|
@ -118,38 +118,38 @@ const total_txt = computed(() => {
|
|||
|
||||
const extra = {
|
||||
pillar: !remove_pillar.value && {
|
||||
txt: `Дополнительная секция, столб, 1шт`,
|
||||
txt: `Дополнительная секция, столб, 1 шт`,
|
||||
value: prices.pillar * 1
|
||||
},
|
||||
lamella: {
|
||||
txt: `Дополнительная секция, ламели, ${lam_count}шт`,
|
||||
txt: `Дополнительная секция, ламели, ${lam_count} шт`,
|
||||
value: prices.lamella_extra * lam_count
|
||||
},
|
||||
guide: {
|
||||
txt: `Направляющие, 2шт`,
|
||||
txt: `Направляющие, 2 шт`,
|
||||
value: prices.guide * 2
|
||||
},
|
||||
top: {
|
||||
txt: `Верхняя планка`,
|
||||
txt: `Верхняя планка, 1 шт`,
|
||||
value: prices.top * 1
|
||||
},
|
||||
|
||||
}
|
||||
const regular = {
|
||||
pillar: !remove_pillar.value && {
|
||||
txt: `Столб, ${(1 + sections)}шт`,
|
||||
txt: `Столб, ${(1 + sections)} шт`,
|
||||
value: prices.pillar * (1 + sections)
|
||||
},
|
||||
lamella: {
|
||||
txt: `Ламели, ${(lam_count * sections)}шт`,
|
||||
txt: `Ламели, ${(lam_count * sections)} шт`,
|
||||
value: prices.lamella * (lam_count * sections)
|
||||
},
|
||||
guide: {
|
||||
txt: `Направляющие, ${(2 + sections)}шт`,
|
||||
txt: `Направляющие, ${(2 * sections)} шт`,
|
||||
value: prices.guide * (2 * sections)
|
||||
},
|
||||
top: {
|
||||
txt: `Верхняя планка ${(1 + sections)}шт`,
|
||||
txt: `Верхняя планка ${(1 + sections)} шт`,
|
||||
value: prices.top * sections
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue