target.wxml 389 B

12345678910
  1. <!--compontents/target/target.wxml-->
  2. <view class="target">
  3. <view class="title">
  4. <text>本周学习目标</text>
  5. </view>
  6. <view class="{{ flag ? 'target-txt-show' : 'target-txt'}}" animation="{{animationData}}">
  7. <text class="week">第五周:{{wxObjectives}}</text>
  8. </view>
  9. <text class="unfold" data-flag="{{flag}}" bindtap="onTap">展开</text>
  10. </view>