init project
This commit is contained in:
28
pages/myBills/index.wxml
Normal file
28
pages/myBills/index.wxml
Normal file
@@ -0,0 +1,28 @@
|
||||
<!--pages/myBills/index.wxml-->
|
||||
<header title="我的账单"></header>
|
||||
<view class='container'>
|
||||
<view class='list'>
|
||||
<view class='cell' wx:for="{{list}}" wx:key="{{index}}">
|
||||
<view class='left'>
|
||||
<!-- <view class='title'>{{item.venueLesson.name}}</view> -->
|
||||
<view class='title' wx:if="{{item.type == 1}}">{{item.venue.name}}进场</view>
|
||||
<view class='title' wx:if="{{item.type == 2}}">购买{{item.venue.name}}{{item.cardType}}</view>
|
||||
<view class='title' wx:if="{{item.type == 3}}">预约{{item.venueLesson.name}}</view>
|
||||
<view class='title' wx:if="{{item.type == 4}}">充值</view>
|
||||
<view class='title' wx:if="{{item.type == 5}}">{{item.venueLesson.name}}退款</view>
|
||||
<view class='title' wx:if="{{item.type == 6}}">提现</view>
|
||||
<view class='title' wx:if="{{item.type == 7}}">提现失败</view>
|
||||
<view class='title' wx:if="{{item.type == 8}}">提现审核通过</view>
|
||||
<view class='title' wx:if="{{item.type == 9}}">单次扣款</view>
|
||||
<view class='date'>{{item.createdTime}}</view>
|
||||
</view>
|
||||
<view class='right' wx:if="{{item.payType == 3}}">使用{{item.cardType}}</view>
|
||||
<view class='right {{item.money > 0 ? "isActive" : ""}}' wx:else>{{item.money > 0 ? "+" : ""}}{{item.money}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class='newplot' wx:if="{{isShowNewplot && list.length == 0}}">
|
||||
<image src='../../images/noContent.png'></image>
|
||||
<text>暂无记录 ~</text>
|
||||
</view>
|
||||
Reference in New Issue
Block a user