From c28f215bf213cc5884bf7f7bc08498e7ec67e15f Mon Sep 17 00:00:00 2001 From: huanshuo-W <15258427350@163.com> Date: Sat, 5 Jul 2025 16:26:43 +0800 Subject: [PATCH] =?UTF-8?q?Fix:=20=E4=BF=AE=E6=94=B9=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/App.vue b/src/App.vue index 0535c67..f4df408 100644 --- a/src/App.vue +++ b/src/App.vue @@ -147,28 +147,28 @@ const menuItems = computed(() => { return [ { - title: t('beltSpecificationCalculate'), - component: 'BeltSpecificationCalculate', + title: t('paperTubeWeightCalculate'), + component: 'PaperTubeWeightCalculate', }, { - title: t('multiLayerPaperTapeWidthAngleCalculate'), - component: 'MultiLayerPaperTapeWidthAngleCalculate', + title: t('beltSpecificationCalculate'), + component: 'BeltSpecificationCalculate', }, { title: t('paperRollWeightLengthCalculate'), component: 'PaperRollWeightLengthCalculate', }, - { - title: t('paperTapeWidthAngleCalculate'), - component: 'PaperTapeWidthAngleCalculate', - }, { title: t('paperTubeProductionCalculate'), component: 'PaperTubeProductionCalculate', }, { - title: t('paperTubeWeightCalculate'), - component: 'PaperTubeWeightCalculate', + title: t('paperTapeWidthAngleCalculate'), + component: 'PaperTapeWidthAngleCalculate', + }, + { + title: t('multiLayerPaperTapeWidthAngleCalculate'), + component: 'MultiLayerPaperTapeWidthAngleCalculate', }, ] })