qingcheng-xiaochengxu/pages/personCenter/billingDetails/billingDetails.wxml
2025-05-21 18:40:41 +08:00

19 lines
799 B
Plaintext

<view class="flex-col justify-start page">
<view class="flex-col justify-start section">
<view class="flex-col section_2">
<text class="self-start text">账单明细</text>
<view class="flex-col self-stretch">
<view class="flex-col list-item" wx:for="{{items}}" wx:for-item="item" wx:for-index="index" wx:key="index">
<view class="flex-row justify-between items-baseline">
<text class="font text_2">银行卡</text>
<text class="font_2">¥2.00</text>
</view>
<view class="flex-row justify-between items-center group mt-15">
<text class="font_4 text_3">2025-10-20 18:45:15</text>
<text class="font_3">待审核</text>
</view>
</view>
</view>
</view>
</view>
</view>