This commit is contained in:
2024-03-30 00:05:07 +08:00
parent 51c708f9fa
commit 52b63a757f
7 changed files with 176 additions and 64 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class='card-view'>
<text class='category-title'>2023-02-12</text>
<!-- <text class='category-title'>2023-02-12</text>-->
<view class='item c-flex-column' v-for='(item,index) in 3' :key='index'>
<view class='c-flex-row'>
<text class='primary-text-color' style='flex: 1'>消费</text>
@@ -10,14 +10,16 @@
<text class='secondary-text-color' style='flex: 1'>2023-06-27 15:02:11</text>
<text style='color: #999999'>会员余额30.00</text>
</view>
<view class='divider' style='margin-top: 20rpx'/>
<view class='divider' style='margin-top: 20rpx' />
</view>
</view>
</template>
<script lang='ts' setup>
import { PropType } from 'vue';
defineProps({
item: Object
item: Object as PropType<any>
});
</script>