From 43fdc964c0be2866fd45be679e9dfadf0c2f8fb9 Mon Sep 17 00:00:00 2001 From: hzz Date: Sat, 16 Sep 2023 18:00:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=95=E4=BC=9A=E5=A4=A7=E5=B1=8F=20?= =?UTF-8?q?=E5=8D=95=E4=BD=8D=E6=B7=BB=E5=8A=A0=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/module/MicroExhibition.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/store/module/MicroExhibition.ts b/src/store/module/MicroExhibition.ts index ad0144a..df5414c 100644 --- a/src/store/module/MicroExhibition.ts +++ b/src/store/module/MicroExhibition.ts @@ -85,7 +85,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, { } else if(params.name == '1050910'){ unit = '米' } - return params.value + unit; + return params.value + ' ' + unit; } } @@ -102,7 +102,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, { item.label = { show: true, position: 'top', - formatter: '{c}只' + formatter: '{c} 只' } return item }) @@ -127,7 +127,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, { } else if(params.name == '1021629'){ unit = '件' } - return params.value + unit; + return params.value + ' ' + unit; } } return item @@ -145,7 +145,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, { item.label = { show: true, position: 'top', - formatter: '{c}版' + formatter: '{c} 版' } return item }) @@ -163,7 +163,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, { item.label = { show: true, position: 'top', - formatter: '{c}件' + formatter: '{c} 件' } return item })