Fix: 修改菜单顺序

This commit is contained in:
2025-07-05 16:26:43 +08:00
parent 216f65966a
commit c28f215bf2

View File

@ -147,28 +147,28 @@
const menuItems = computed(() => { const menuItems = computed(() => {
return [ return [
{ {
title: t('beltSpecificationCalculate'), title: t('paperTubeWeightCalculate'),
component: 'BeltSpecificationCalculate', component: 'PaperTubeWeightCalculate',
}, },
{ {
title: t('multiLayerPaperTapeWidthAngleCalculate'), title: t('beltSpecificationCalculate'),
component: 'MultiLayerPaperTapeWidthAngleCalculate', component: 'BeltSpecificationCalculate',
}, },
{ {
title: t('paperRollWeightLengthCalculate'), title: t('paperRollWeightLengthCalculate'),
component: 'PaperRollWeightLengthCalculate', component: 'PaperRollWeightLengthCalculate',
}, },
{
title: t('paperTapeWidthAngleCalculate'),
component: 'PaperTapeWidthAngleCalculate',
},
{ {
title: t('paperTubeProductionCalculate'), title: t('paperTubeProductionCalculate'),
component: 'PaperTubeProductionCalculate', component: 'PaperTubeProductionCalculate',
}, },
{ {
title: t('paperTubeWeightCalculate'), title: t('paperTapeWidthAngleCalculate'),
component: 'PaperTubeWeightCalculate', component: 'PaperTapeWidthAngleCalculate',
},
{
title: t('multiLayerPaperTapeWidthAngleCalculate'),
component: 'MultiLayerPaperTapeWidthAngleCalculate',
}, },
] ]
}) })