Files
LSM_OIL_SITE/components/oil-menu-item.vue
2020-08-18 17:18:00 +08:00

28 lines
513 B
Vue

<template>
<view class="radius padding-xs padding-bottom padding-top margin-top bg-white shadow solid-bottom">
<view class="item-title ">
<text class="margin color-000 text-bold">92#</text>
<text class="fr padding-right text-sm text-grey">2020-8-18</text>
<PriceList />
</view>
</view>
</template>
<script>
import PriceList from '@/components/PriceList/PriceList.vue'
export default {
components: {
PriceList
},
data() {
return {
};
}
}
</script>
<style scoped>
</style>