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.
28 lines
513 B
28 lines
513 B
4 years ago
|
<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>
|