Compare commits
5 Commits
6a214b3796
...
b894d2a4ae
| Author | SHA1 | Date | |
|---|---|---|---|
| b894d2a4ae | |||
| 5651405605 | |||
| c6190a0788 | |||
| 17bda531d7 | |||
| ca5d33cf09 |
@ -83,26 +83,52 @@
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('recommendBeltThickness')}`"
|
||||
:value="result.recommendBeltThickness"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('recommendBeltWidth')}`"
|
||||
:value="result.recommendBeltWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('recommendBeltLength')}`"
|
||||
:value="result.recommendBeltLength"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section
|
||||
:label="`${$t('recommendBeltThickness')}`"
|
||||
:value="result.recommendBeltThickness"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('recommendBeltWidth')}`"
|
||||
:value="result.recommendBeltWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('recommendBeltLength')}`"
|
||||
:value="result.recommendBeltLength"
|
||||
/>
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('maxWheelbase')" :value="maxWheelbase" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('hubDiameter')" :value="hubDiameter" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperTubeInnerDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollWallThickness')" :value="paperRollWallThickness" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@ -66,68 +66,84 @@
|
||||
/>
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeInnerDiameter')}`"
|
||||
:value="result.paperCoreDiameter"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeExternalDiameter')}`"
|
||||
:value="result.paperTubeExternalDiameter"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeThickness')}`"
|
||||
:value="result.paperTubeWallThickness"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.bottomPaperAngle')}`"
|
||||
:value="result.bottomPaperAngle"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.leadingLength')}`"
|
||||
:value="result.leadingLength"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.bottomPaperWidth')}`"
|
||||
:value="result.bottomPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.secondLayerPaperWidth')}`"
|
||||
:value="result.secondLayerPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.thirdLayerPaperWidth')}`"
|
||||
:value="result.thirdLayerPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.topPaperWidth')}`"
|
||||
:value="result.topPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.beltWidth')}`"
|
||||
:value="result.beltWidth"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeInnerDiameter')}`"
|
||||
:value="result.paperCoreDiameter"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeExternalDiameter')}`"
|
||||
:value="result.paperTubeExternalDiameter"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeThickness')}`"
|
||||
:value="result.paperTubeWallThickness"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.bottomPaperAngle')}`"
|
||||
:value="result.bottomPaperAngle"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.leadingLength')}`"
|
||||
:value="result.leadingLength"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.bottomPaperWidth')}`"
|
||||
:value="result.bottomPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.secondLayerPaperWidth')}`"
|
||||
:value="result.secondLayerPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.thirdLayerPaperWidth')}`"
|
||||
:value="result.thirdLayerPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.topPaperWidth')}`"
|
||||
:value="result.topPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.beltWidth')}`"
|
||||
:value="result.beltWidth"
|
||||
/>
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperTubeInnerDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('bottomPaperWidth')" :value="bottomPaperWidth" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('bottomPaperThickness')" :value="bottomPaperThickness" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('secondLayerPaperThickness')" :value="secondLayerPaperThickness" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('thirdLayerPaperThickness')" :value="thirdLayerPaperThickness" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('topPaperThickness')" :value="topPaperThickness" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@ -93,26 +93,57 @@
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('paperRollWeight')"
|
||||
:value="result.paperRollWeight"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('paperRollLength')"
|
||||
:value="result.paperRollLength"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('paperThickness')"
|
||||
:value="result.paperThickness"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section
|
||||
:label="$t('paperRollWeight')"
|
||||
:value="result.paperRollWeight"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('paperRollLength')"
|
||||
:value="result.paperRollLength"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('paperThickness')"
|
||||
:value="result.paperThickness"
|
||||
/>
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperCoreDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollExternalDiameter')" :value="paperRollExternalDiameter" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollWidth')" :value="paperRollWidth" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperDensity')" :value="paperDensity" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperGrammage')" :value="paperGrammage" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@ -68,20 +68,38 @@
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card :label="$t('beltAngle')" :value="result.beltAngle" />
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card :label="$t('paperHolderAngle')" :value="result.paperHolderAngle" />
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card :label="$t('leadingLength')" :value="result.leadingLength" />
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card :label="$t('paperWidth')" :value="result.paperWidth" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section :label="$t('beltAngle')" :value="result.beltAngle" />
|
||||
<result-section :label="$t('paperHolderAngle')" :value="result.paperHolderAngle" />
|
||||
<result-section :label="$t('leadingLength')" :value="result.leadingLength" />
|
||||
<result-section :label="$t('paperWidth')" :value="result.paperWidth" />
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperTubeInnerDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollWallThickness')" :value="paperRollWallThickness" />
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<input-param-section :label="$t('innerPaperWidth')" :value="innerPaperWidth" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@ -111,44 +111,80 @@
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('feedPaperSpeed')"
|
||||
:value="result.feedPaperSpeed"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('outputSpeed')"
|
||||
:value="result.outputSpeed"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('productionAmountPerHour')"
|
||||
:value="result.productionAmountPerHour"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('productionWeightPerHour')"
|
||||
:value="result.productionWeightPerHour"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('productionAmountPerDay')"
|
||||
:value="result.productionAmountPerDay"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="$t('productionWeightPerDay')"
|
||||
:value="result.productionWeightPerDay"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section
|
||||
:label="$t('feedPaperSpeed')"
|
||||
:value="result.feedPaperSpeed"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('outputSpeed')"
|
||||
:value="result.outputSpeed"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('productionAmountPerHour')"
|
||||
:value="result.productionAmountPerHour"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('productionWeightPerHour')"
|
||||
:value="result.productionWeightPerHour"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('productionAmountPerDay')"
|
||||
:value="result.productionAmountPerDay"
|
||||
/>
|
||||
<result-section
|
||||
:label="$t('productionWeightPerDay')"
|
||||
:value="result.productionWeightPerDay"
|
||||
/>
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperTubeInnerDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollWallThickness')" :value="paperRollWallThickness" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperRollLength')" :value="paperRollLength" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperDensity')" :value="paperDensity" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('innerPaperWidth')" :value="innerPaperWidth" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('workFrequency')" :value="workFrequency" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('workTime')" :value="workTime" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('workEfficiency')" :value="workEfficiency" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
@ -63,62 +63,76 @@
|
||||
/>
|
||||
{{ $t('results') }}
|
||||
</v-card-title>
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeInnerDiameter')}`"
|
||||
:value="result.paperCoreDiameter"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeExternalDiameter')}`"
|
||||
:value="result.paperTubeExternalDiameter"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.paperTubeThickness')}`"
|
||||
:value="result.paperTubeWallThickness"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.bottomPaperAngle')}`"
|
||||
:value="result.bottomPaperAngle"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.leadingLength')}`"
|
||||
:value="result.leadingLength"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.bottomPaperWidth')}`"
|
||||
:value="result.bottomPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.middlePaperWidth')}`"
|
||||
:value="result.middlePaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.topPaperWidth')}`"
|
||||
:value="result.topPaperWidth"
|
||||
/>
|
||||
</v-col>
|
||||
<v-col cols="12">
|
||||
<result-card
|
||||
:label="`${$t('paperStrawResult.beltWidth')}`"
|
||||
:value="result.beltWidth"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-list lines="two">
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeInnerDiameter')}`"
|
||||
:value="result.paperCoreDiameter"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeExternalDiameter')}`"
|
||||
:value="result.paperTubeExternalDiameter"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.paperTubeThickness')}`"
|
||||
:value="result.paperTubeWallThickness"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.bottomPaperAngle')}`"
|
||||
:value="result.bottomPaperAngle"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.leadingLength')}`"
|
||||
:value="result.leadingLength"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.bottomPaperWidth')}`"
|
||||
:value="result.bottomPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.middlePaperWidth')}`"
|
||||
:value="result.middlePaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.topPaperWidth')}`"
|
||||
:value="result.topPaperWidth"
|
||||
/>
|
||||
<result-section
|
||||
:label="`${$t('paperStrawResult.beltWidth')}`"
|
||||
:value="result.beltWidth"
|
||||
/>
|
||||
</v-list>
|
||||
|
||||
<v-expansion-panels flat multiple>
|
||||
<v-expansion-panel hide-actions>
|
||||
<v-expansion-panel-title class="text-warning font-weight-bold">
|
||||
<template #default="{ expanded }">
|
||||
<span>
|
||||
<v-icon icon="mdi-information-outline" />
|
||||
{{ expanded ? $t('calculationParameters') : $t('expandToShowCalculationParameters') }}
|
||||
</span>
|
||||
</template>
|
||||
</v-expansion-panel-title>
|
||||
<v-expansion-panel-text>
|
||||
<v-row>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('paperTubeInnerDiameter')" :value="paperCoreDiameter" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('bottomPaperWidth')" :value="bottomPaperWidth" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('bottomPaperThickness')" :value="bottomPaperThickness" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('middlePaperThickness')" :value="middlePaperThickness" />
|
||||
</v-col>
|
||||
<v-col cols="6">
|
||||
<input-param-section :label="$t('topPaperThickness')" :value="topPaperThickness" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-expansion-panel-text>
|
||||
</v-expansion-panel>
|
||||
</v-expansion-panels>
|
||||
</v-card>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
Reference in New Issue
Block a user