12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view class="container">
- <view class="categoryBox">
- <view class="category {{currentIndex==item.id?'currentClass':''}}" wx:for="{{categoryList}}" wx:key="id"
- data-index="{{item.id}}" data-title='{{item.title}}' bindtap="setClass">
- {{item.title}}
- </view>
- </view>
- <scroll-view class="orderList" scroll-y="true" enhanced show-scrollbar="{{false}}" bindscrolltolower='loadMore'>
- <view class="order" wx:for="{{5}}" wx:key="index">
- <view class="above">
- <view class="userInfo">
- <image src="https://reader-wx.ai160.com/reader/resource/20230215/1676472360368723.jpg"
- class="avatar" />
- <view>
- <view class="nickName">刘聪{{index}}</view>
- <view class="addTime">
- 加入时间 :20230-08-27 14:00
- </view>
- </view>
- </view>
- <view class="state">已付款</view>
- </view>
- <view class="below">
- <view class="row">
- <view>购买类型:1个月VIP</view>
- <view>付款金额 <text class="money">199元</text>
- </view>
- </view>
- <view class="row" style="font-size: 22rpx;">
- <view>
- 2023-08-27 23:33:21付款
- </view>
- <view>
- 2023-09-03 23:33:21退款
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
|