| <!--pages/rechargeList/rechargeList.wxml--> | 
| <view class="base-wrapper"> | 
| <view> | 
|   <picker mode="selector" range="{{array}}" bindchange="bindPickerChange"> | 
|     <view class="picker"> | 
|       当前选择:{{array[index]}} | 
|     </view> | 
|   </picker> | 
|   | 
|   | 
| </view> | 
| <scroll-view class="scroll-view" scroll-y="true"> | 
|     <view class="scroll-bg"> | 
|       <view class="list-item" wx:for="{{listData}}" wx:for-item="item" wx:for-index="index"> | 
|         <view> | 
|           <view class="order-code"> | 
|             <text>订单编号:</text> | 
|             <text>{{item.orderNumber}}</text> | 
|           </view> | 
|           <view> | 
|             <text class="order-time">{{item.time}}</text> | 
|           </view> | 
|   | 
|         </view> | 
|         <view class="order-right"> | 
|           <view class="money-wrapper"> | 
|             <text>{{item.money}}</text> | 
|             <text>元</text> | 
|           </view> | 
|           <text class="order-state">{{item.state}}</text> | 
|         </view> | 
|       </view> | 
|     </view> | 
|   </scroll-view> | 
|   | 
|   | 
|   | 
| </view> |