You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
391 B

<template>
<view class="uom">
{{getUom(uom)}}
</view>
</template>
<script setup lang="ts">
import {
getUomInfo
} from '@/common/directory.js';
const props = defineProps({
uom: {
type: String,
default: ''
},
})
const getUom = (uom) => {
let item = getUomInfo(uom);
if (item == '') {
return uom;
} else {
return item.label
}
}
</script>
<style>
</style>