28 lines
513 B
Vue
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>
|