Compare commits

..

No commits in common. "9699c2ca86896cbe662b9bd561941b45d31d7fcb" and "9f29161981bde63d94c29ecc147df616fc3b1d8f" have entirely different histories.

1 changed files with 8 additions and 8 deletions

View File

@ -118,38 +118,38 @@ const total_txt = computed(() => {
const extra = { const extra = {
pillar: !remove_pillar.value && { pillar: !remove_pillar.value && {
txt: `Дополнительная секция, столб, 1 шт`, txt: `Дополнительная секция, столб, 1шт`,
value: prices.pillar * 1 value: prices.pillar * 1
}, },
lamella: { lamella: {
txt: `Дополнительная секция, ламели, ${lam_count} шт`, txt: `Дополнительная секция, ламели, ${lam_count}шт`,
value: prices.lamella_extra * lam_count value: prices.lamella_extra * lam_count
}, },
guide: { guide: {
txt: `Направляющие, 2 шт`, txt: `Направляющие, 2шт`,
value: prices.guide * 2 value: prices.guide * 2
}, },
top: { top: {
txt: `Верхняя планка, 1 шт`, txt: `Верхняя планка`,
value: prices.top * 1 value: prices.top * 1
}, },
} }
const regular = { const regular = {
pillar: !remove_pillar.value && { pillar: !remove_pillar.value && {
txt: `Столб, ${(1 + sections)} шт`, txt: `Столб, ${(1 + sections)}шт`,
value: prices.pillar * (1 + sections) value: prices.pillar * (1 + sections)
}, },
lamella: { lamella: {
txt: `Ламели, ${(lam_count * sections)} шт`, txt: `Ламели, ${(lam_count * sections)}шт`,
value: prices.lamella * (lam_count * sections) value: prices.lamella * (lam_count * sections)
}, },
guide: { guide: {
txt: `Направляющие, ${(2 * sections)} шт`, txt: `Направляющие, ${(2 + sections)}шт`,
value: prices.guide * (2 * sections) value: prices.guide * (2 * sections)
}, },
top: { top: {
txt: `Верхняя планка ${(1 + sections)} шт`, txt: `Верхняя планка ${(1 + sections)}шт`,
value: prices.top * sections value: prices.top * sections
}, },
} }