You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
359 B
11 lines
359 B
<view class="exercise-item" bindtap="onTap">
|
|
<view class="title">
|
|
<text>{{data.exercise_name}}</text>
|
|
</view>
|
|
<view class="status">
|
|
<text wx:if="{{data.exercise_left_time}}" class="left-time">还剩{{data.exercise_left_time}}截止</text>
|
|
</view>
|
|
<view>
|
|
<text class="tip" wx:for="{{data.exercise_tips}}">{{item}}</text>
|
|
</view>
|
|
</view> |