2025-06-13 14:39:20 +08:00

11 lines
576 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--subpackage/train/report-list/report-list.wxml-->
<view class="page-content">
<mp-bar background="linear-gradient(190deg, #49a5fc 0%, #f7f7f7 800rpx, #f7f7f7 100%)" title="课程列表" color="#fff"></mp-bar>
<view class="card" wx:for="{{list}}" wx:key="index" bind:tap="goReportDetail" id="{{item.id}}">
<view>{{item.startingEndingTime}}{{item.time}}</view>
<mp-icon icon="arrow" size="{{13}}" color="#ccc"></mp-icon>
</view>
<view class="more" wx:if="{{haveMore}}">加载中...</view>
<view class="more" wx:else>没有更多了哦~</view>
</view>