2025-06-23 10:03:08 +08:00
|
|
|
<!--pages/course/searchCourses/searchCourses.wxml-->
|
|
|
|
<view class="flex-col page">
|
|
|
|
<view class="flex-row items-center section">
|
|
|
|
<image
|
|
|
|
class="image"
|
2025-08-06 13:16:08 +08:00
|
|
|
src="./images/sousuo.png"
|
2025-06-23 10:03:08 +08:00
|
|
|
/>
|
2025-08-07 20:18:00 +08:00
|
|
|
<input class="text ml-3" placeholder="搜索更多好课" bindinput="onSearchInput" confirm-type="search" bindconfirm="onSearch"/>
|
2025-06-23 10:03:08 +08:00
|
|
|
</view>
|
|
|
|
<view class="flex-col list mt-17">
|
2025-08-07 20:18:00 +08:00
|
|
|
<view bind:tap="gotoCourseDetail" data-id="{{item.id}}" class="flex-row relative list-item" wx:for="{{courseList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
|
2025-06-23 10:03:08 +08:00
|
|
|
<view class="list-divider pos_3"></view>
|
|
|
|
<image
|
|
|
|
class="image_2 pos"
|
2025-08-07 20:18:00 +08:00
|
|
|
src="{{globalImgUrl + item.image}}"
|
2025-06-23 10:03:08 +08:00
|
|
|
/>
|
|
|
|
<view class="flex-col group_2 pos_2">
|
2025-08-07 20:18:00 +08:00
|
|
|
<text class="font">{{item.name}}</text>
|
2025-06-23 10:03:08 +08:00
|
|
|
<view class="flex-row justify-between items-baseline mt-17">
|
2025-08-07 20:18:00 +08:00
|
|
|
<text class="font_2">券后{{item.discountPrice}}元起</text>
|
|
|
|
<text class="font_3">{{item.orderCount}}人学习</text>
|
2025-06-23 10:03:08 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|