20 lines
654 B
Plaintext
20 lines
654 B
Plaintext
<!--pages/member/course/CourseMy/CourseMy.wxml-->
|
|
<view>
|
|
<block wx:for="{{courseList}}" wx:key="{{item.goods_id}}">
|
|
<view class="course" data-id="{{item.goods_id}}" bindtap='toCourse'>
|
|
<view class="order">订单号:{{item.order_sn}}</view>
|
|
<view class="course-content">
|
|
<view class="course-img">
|
|
<image src="{{item.goods_thumb}}"></image>
|
|
</view>
|
|
<view class="course-text">
|
|
<text class="name">课程名称:{{item.goods_title}}</text>
|
|
<text class="time">{{item.created_at}}</text>
|
|
</view>
|
|
<view class="icon">
|
|
<icon class="iconfont icon-bofang"></icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view> |