You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
692 B
Vue

<template>
<view>
<view class="text-center cu-form-group" >
会员的消费记录
</view>
<view class="cu-list radius bg-white padding margin" v-for="(item,index) in calendarList" :key='index'>
<view class="">
<text class="text-bold margin-right">消费时间</text>
<text>{{item.date}}</text>
</view>
<view class="">
<text class="text-bold margin-right"></text>
<text>{{item.projectName}}</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
calendarList:[
{date:"2021-05-10 14:56:50",projectName:"精品水润护肤"}
]
}
},
methods: {
}
}
</script>
<style>
</style>