回退订阅课程需要审核功能

This commit is contained in:
2023-04-22 19:29:31 +08:00
parent be00a4cb3e
commit 3a422e7ead
2 changed files with 5 additions and 7 deletions

View File

@@ -14,11 +14,10 @@
<view class='cell' wx:for="{{list}}" wx:key="{{index}}" bindtap='clickCell' data-ordersn='{{item.orderSn}}'>
<view class='top'>
<text>预约单号: {{item.orderSn}}</text>
<text class='isActive' wx:if="{{item.status == 0}}">预约成功</text>
<text class='isActive' wx:if="{{item.status == 0}}">预约</text>
<text wx:if="{{item.status == 3}}">未签到</text>
<text wx:if="{{item.status == 1}}">已完成</text>
<text wx:if="{{item.status == 2}}">已取消</text>
<text wx:if="{{item.status == 4}}">待审核</text>
</view>
<view class='bottom'>
<image src='{{item.lessonImage}}' mode='aspectFill'></image>
@@ -42,4 +41,4 @@
<view class='newplot' wx:if="{{list.length == 0 && isShowNewplot}}">
<image src='../../images/noContent.png'></image>
<text>暂无预约 ~</text>
</view>
</view>