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.

41 lines
493 B

1 year ago
<template>
<view class="uom">
{{getPackUnit(uom)}}
1 year ago
</view>
</template>
<script>
import {
getPackUnitInfo
1 year ago
} from '@/common/directory.js';
export default {
data() {
return {
};
},
// 此处定义传入的数据
props: {
uom: {
type: String,
default: ''
},
},
methods: {
getPackUnit(uom) {
let item = getPackUnitInfo(uom);
1 year ago
if (item == '') {
return uom;
} else {
return item.label
}
}
}
}
</script>
<style>
</style>