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

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