展会大屏 单位添加空格

This commit is contained in:
hzz 2023-09-16 18:00:39 +08:00
parent 4979f3391c
commit 43fdc964c0

View File

@ -85,7 +85,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, {
} else if(params.name == '1050910'){ } else if(params.name == '1050910'){
unit = '米' unit = '米'
} }
return params.value + unit; return params.value + ' ' + unit;
} }
} }
@ -127,7 +127,7 @@ export const useMicroExhibitionStore = defineStore(Names.MicroExhibition, {
} else if(params.name == '1021629'){ } else if(params.name == '1021629'){
unit = '件' unit = '件'
} }
return params.value + unit; return params.value + ' ' + unit;
} }
} }
return item return item