style: 纸卷产能计算页面布局调整

- 结果展示由卡片式转为列表式
This commit is contained in:
2025-12-01 16:05:59 +08:00
parent 17bda531d7
commit c6190a0788

View File

@ -111,44 +111,80 @@
{{ $t('results') }} {{ $t('results') }}
</v-card-title> </v-card-title>
<v-row> <v-list lines="two">
<v-col cols="12"> <result-section
<result-card
:label="$t('feedPaperSpeed')" :label="$t('feedPaperSpeed')"
:value="result.feedPaperSpeed" :value="result.feedPaperSpeed"
/> />
</v-col> <result-section
<v-col cols="12">
<result-card
:label="$t('outputSpeed')" :label="$t('outputSpeed')"
:value="result.outputSpeed" :value="result.outputSpeed"
/> />
</v-col> <result-section
<v-col cols="12">
<result-card
:label="$t('productionAmountPerHour')" :label="$t('productionAmountPerHour')"
:value="result.productionAmountPerHour" :value="result.productionAmountPerHour"
/> />
</v-col> <result-section
<v-col cols="12">
<result-card
:label="$t('productionWeightPerHour')" :label="$t('productionWeightPerHour')"
:value="result.productionWeightPerHour" :value="result.productionWeightPerHour"
/> />
</v-col> <result-section
<v-col cols="12">
<result-card
:label="$t('productionAmountPerDay')" :label="$t('productionAmountPerDay')"
:value="result.productionAmountPerDay" :value="result.productionAmountPerDay"
/> />
</v-col> <result-section
<v-col cols="12">
<result-card
:label="$t('productionWeightPerDay')" :label="$t('productionWeightPerDay')"
:value="result.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-col>
</v-row> </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-card>
</v-col> </v-col>
</v-row> </v-row>