2025-06-25 15:44:12 +08:00
|
|
|
<view class="flex-col page">
|
|
|
|
<text class="self-center text">{{ courseType }}</text>
|
2025-07-20 18:22:59 +08:00
|
|
|
<image class="shrink-0 self-start image image_2" src="./image/line.png" />
|
|
|
|
<image class="shrink-0 self-end image image_3" src="./image/line.png" />
|
|
|
|
|
2025-06-25 15:44:12 +08:00
|
|
|
<view class="flex-col self-stretch list">
|
2025-07-20 18:22:59 +08:00
|
|
|
<!-- 遍历接口返回的 items 数组 -->
|
2025-06-25 15:44:12 +08:00
|
|
|
<view
|
2025-07-20 18:22:59 +08:00
|
|
|
class="flex-col list-item"
|
|
|
|
wx:for="{{courseList}}"
|
2025-06-25 15:44:12 +08:00
|
|
|
wx:for-item="item"
|
|
|
|
wx:for-index="index"
|
2025-07-20 18:22:59 +08:00
|
|
|
wx:key="id"
|
2025-06-25 15:44:12 +08:00
|
|
|
>
|
2025-07-20 18:22:59 +08:00
|
|
|
<view
|
|
|
|
class="flex-row items-center relative group"
|
|
|
|
bindtap="gotoCourseDetail"
|
|
|
|
data-id="{{item.id}}"
|
|
|
|
>
|
|
|
|
<!-- 课程封面 -->
|
2025-06-25 15:44:12 +08:00
|
|
|
<image
|
|
|
|
class="shrink-0 image_4"
|
2025-07-20 18:22:59 +08:00
|
|
|
src="{{ globalImgUrl + item.image}}"
|
|
|
|
mode="aspectFill"
|
2025-06-25 15:44:12 +08:00
|
|
|
/>
|
|
|
|
<view class="flex-col flex-1 ml-12">
|
2025-07-20 18:22:59 +08:00
|
|
|
<!-- 课程名称 -->
|
|
|
|
<text class="font">{{item.name}}</text>
|
2025-06-25 15:44:12 +08:00
|
|
|
<view class="flex-row justify-between items-baseline mt-17">
|
2025-07-20 18:22:59 +08:00
|
|
|
<!-- 卷后价格 -->
|
|
|
|
<text class="font_2">券后{{item.discountPrice}}元起</text>
|
|
|
|
<!-- 已有下单人数 -->
|
|
|
|
<text class="font_3">{{item.orderCount}}人学习</text>
|
2025-06-25 15:44:12 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
2025-07-20 18:22:59 +08:00
|
|
|
</view>
|